-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
34 lines (34 loc) · 1.01 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
{
"name": "leaseweb/secure-controller-bundle",
"type": "symfony-bundle",
"description": "Provide '@Secure' annotation to secure actions in controllers by specifying required roles",
"keywords": ["secure","security","annotation","controller","Symfony2"],
"homepage": "http://www.leaseweblabs.com",
"license": "MIT",
"authors": [
{
"name": "Maurits van der Schee",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.8",
"doctrine/annotations": "@stable",
"symfony/security-bundle": ">=2.8",
"symfony/security-acl": ">=2.8"
},
"require-dev": {
"doctrine/doctrine-bundle": "@stable"
},
"autoload": {
"psr-0": { "Lsw\\SecureControllerBundle": "" }
},
"target-dir": "Lsw/SecureControllerBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}