forked from chili-labs/AclBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.21 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
{
"name": "project-a/acl-bundle",
"type": "symfony-bundle",
"description": "Providing an easy way to work with the Symfony Security Acl.",
"keywords": ["symfony2", "acl", "security"],
"license": "MIT",
"authors": [
{
"name": "Daniel Tschinder",
"email": "[email protected]",
"homepage": "http://www.tschinder.de"
}
],
"require": {
"php": ">=5.3.0",
"doctrine/common": "~2.2",
"symfony/framework-bundle": "~2.3",
"symfony/security": "~2.3"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.0",
"doctrine/orm": "~2.2",
"symfony/browser-kit": "~2.3",
"symfony/expression-language": "~2.4",
"symfony/finder": "~2.3",
"symfony/security-bundle": "~2.3"
},
"suggest": {
"doctrine/orm": "Allows you to remove Acl entries automatically. (When using ORM for Acl)",
"doctrine/mongodb-odm": "Allows you to remove Acl entries automatically. (When using MongoDB for Acl)"
},
"autoload": {
"psr-4": { "ProjectA\\Bundle\\AclBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}