-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
47 lines (47 loc) · 1.27 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
{
"name": "symfony/security-acl",
"type": "library",
"description": "Symfony Security Component - ACL (Access Control List)",
"keywords": [],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=7.2.5",
"symfony/security-core": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
"symfony/cache": "^4.4|^5.0|^6.0|^7.0",
"symfony/finder": "^4.4|^5.0|^6.0|^7.0",
"symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
"doctrine/cache": "^1.11|^2.0",
"doctrine/common": "^2.2|^3",
"doctrine/persistence": "^1.3.3|^2|^3",
"doctrine/dbal": "^2.13.1|^3.1",
"psr/log": "^1|^2|^3"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Security\\Acl\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"conflict": {
"doctrine/cache": "<1.11",
"doctrine/dbal": "<2.13.1|~3.0.0"
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
}
}