forked from nuxia/AclBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1018 Bytes
/
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
{
"name": "nuxia/acl-bundle",
"description": "Acl Bundle",
"keywords": ["Acl"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Alexandre Dupuy",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/security-acl": "~2.3|~3.0",
"symfony/security-bundle": "~2.3|~3.0",
"symfony/security-core": "~2.3|~3.0"
},
"require-dev": {
"doctrine/orm": "~2.4",
"doctrine/doctrine-bundle": "1.*",
"symfony/finder": "~2.3|~3.0",
"phpunit/phpunit": "~4.0",
"symfony/browser-kit": "~2.3|~3.0",
"symfony/twig-bridge": "~2.3|~3.0"
},
"autoload": {
"psr-4": { "Nuxia\\AclBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "Nuxia\\AclBundle\\Tests\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}