-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
51 lines (51 loc) · 1.59 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "xiidea/easy-audit",
"type": "symfony-bundle",
"description": "A Symfony Bundle To Log Selective Events. It is easy to configure and easy to customize for your need",
"keywords": ["Event Log", "Audit Log", "Symfony2", "Symfony3", "Symfony4", "Symfony5", "Symfony6", "Audit trail", "PSR-3"],
"license": "MIT",
"homepage": "http://xiidea.github.io/EasyAuditBundle/",
"authors": [
{
"name": "Roni Saha",
"email": "roni.cse@gmail.com",
"role": "Developer"
},
{
"name": "EasyAuditBundle Community",
"homepage": "https://github.com/xiidea/EasyAuditBundle/contributors"
}
],
"support": {
"issues": "https://github.com/xiidea/EasyAuditBundle/issues",
"source": "https://github.com/xiidea/EasyAuditBundle"
},
"require": {
"php": ">=8.1",
"psr/log": "^1|^2|^3",
"symfony/framework-bundle": ">=5.4 <7.4.0",
"symfony/security-bundle": ">=5.4 <7.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.1",
"doctrine/common": ">=2.2 <4.0",
"symfony/test-pack": "^1.0",
"symfony/twig-bundle": ">=5.4 <7.4",
"symfony/form": ">=5.4 <7.4",
"symfony/validator": ">=5.4 <7.4"
},
"autoload": {
"psr-4": {
"Xiidea\\EasyAuditBundle\\": ""
}
},
"autoload-dev": {
"psr-4": { "Xiidea\\EasyAuditBundle\\Tests\\": "Tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}