-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.73 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.73 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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",
"Symfony7",
"Symfony8",
"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 <9.0",
"symfony/security-bundle": ">=5.4 <9.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 <9.0",
"symfony/form": ">=5.4 <9.0",
"symfony/validator": ">=5.4 <9.0"
},
"autoload": {
"psr-4": {
"Xiidea\\EasyAuditBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Xiidea\\EasyAuditBundle\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}