forked from symfony/acl-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.33 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
{
"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": "^5.5.9|>=7.0.8",
"ext-xml": "*",
"symfony/dependency-injection": "~3.4|~4.0",
"symfony/http-kernel": "~3.4|~4.0",
"symfony/security-acl": "~2.7|~3.0",
"symfony/security-bundle": "~3.4|~4.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.6.12",
"symfony/console": "~3.4|~4.0",
"symfony/framework-bundle": "~3.4|~4.0",
"symfony/phpunit-bridge": "~3.4|~4.0",
"symfony/yaml": "~3.4|~4.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/" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}