forked from leaseweb/LswSecureControllerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 990 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 990 Bytes
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
{
"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": "m.vanderschee@leaseweb.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.1",
"doctrine/annotations": "@stable",
"symfony/security-bundle": ">=2.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "@stable"
},
"autoload": {
"psr-0": { "Lsw\\SecureControllerBundle": "" }
},
"target-dir": "Lsw/SecureControllerBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}