forked from 1up-lab/OneupAclBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (45 loc) · 1.38 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
{
"name": "oneup/acl-bundle",
"type": "symfony-bundle",
"description": "The missing link between Symfony`s Acl implementation and your application.",
"keywords": ["symfony2", "acl", "security"],
"homepage": "http://1up.io",
"license": "MIT",
"authors": [
{
"name": "Jim Schmid",
"email": "[email protected]",
"homepage": "http://1up.io",
"role": "Developer"
},
{
"name": "David Greminger",
"email": "[email protected]",
"homepage": "http://1up.io",
"role": "Developer"
}
],
"require": {
"symfony/framework-bundle": ">=2.2",
"symfony/security-bundle": ">=2.2",
"symfony/expression-language": "~2.4",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/common": "~2.2",
"doctrine/dbal": "~2.2"
},
"require-dev": {
"symfony/finder": ">=2.0.16,<2.4-dev",
"symfony/browser-kit": "2.*",
"sensio/framework-extra-bundle": "~2.2",
"doctrine/orm": "~2.4",
"phpunit/phpunit": "3.7.*"
},
"suggest": {
"sensio/framework-extra-bundle": "Allows you to use controller annotations.",
"doctrine/orm": "Allows you to remove Acl entries automatically."
},
"autoload": {
"psr-0": { "Oneup\\AclBundle": "" }
},
"target-dir": "Oneup/AclBundle"
}