-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
52 lines (52 loc) · 1.49 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
52
{
"name": "symfony/acl-bundle",
"type": "symfony-bundle",
"description": "Symfony AclBundle",
"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.9",
"ext-xml": "*",
"symfony/dependency-injection": "^4.4|^5.0|^6.0|^7.0",
"symfony/http-kernel": "^4.4|^5.0|^6.0|^7.0",
"symfony/security-acl": "^3.0",
"symfony/security-bundle": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.6.12|^2.0",
"doctrine/dbal": "^2.13.1|^3.1",
"doctrine/orm": "^2.7.3",
"symfony/console": "^4.4|^5.0|^6.0|^7.0",
"symfony/framework-bundle": "^4.4|^5.0|^6.0|^7.0",
"symfony/phpunit-bridge": "^5.0|^6.0|^7.0",
"symfony/yaml": "^4.4|^5.0|^6.0|^7.0"
},
"suggest": {
"doctrine/doctrine-bundle": "To use the default dbal configuration"
},
"autoload": {
"psr-4": { "Symfony\\Bundle\\AclBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Symfony\\Bundle\\AclBundle\\Tests\\": "tests/" }
},
"conflict": {
"doctrine/dbal": "<2.13.1|~3.0.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}