-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
38 lines (38 loc) · 1004 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
{
"name": "wemakecustom/symfony-acl-bundle",
"type": "library",
"description": "Symfony ACL Bundle",
"keywords": [],
"homepage": "https://github.com/wemakecustom/symfony-acl-bundle",
"license": "MIT",
"authors": [
{
"name": "Mathieu Lemoine",
"email": "[email protected]"
},
{
"name": "Sébastien Lavoie",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"symfony/security-core": "~2.3"
},
"require-dev": {
"doctrine/common": "~2.2",
"doctrine/orm": "~2.2",
"psr/log": "~1.0"
},
"suggest": {
"doctrine/orm": "To use the built-in ACL Provider",
"psr/log": "",
"symfony/class-loader": "",
"symfony/console": "",
"symfony/dependency-injection": ""
},
"autoload": {
"psr-0": { "WMC\\Symfony\\AclBundle\\": "src" }
},
"minimum-stability": "dev"
}