-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (38 loc) · 994 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
40
{
"name": "xiidea/easy-menu-acl-bundle",
"type": "symfony2-bundle",
"description": "Role Based Access filter for Symfony2 KnpMenuBundle",
"keywords": ["Menu", "KnpMenuBundle", "Symfony2", "ACL"],
"license": "MIT",
"authors": [
{
"name": "Roni Saha",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/xiidea/EasyMenuAcl/issues",
"source": "https://github.com/xiidea/EasyMenuAcl"
},
"require": {
"php": ">=5.3.0",
"symfony/symfony": ">=2.6",
"knplabs/knp-menu-bundle": "^2"
},
"require-dev": {
"phpunit/phpunit": "4.5.*",
"mockery/mockery": ">=0.7.2",
"satooshi/php-coveralls": "~0.6"
},
"autoload": {
"psr-4": {
"Xiidea\\EasyMenuAclBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}