-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.11 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
41
42
43
44
{
"name": "ddelrio1986/ninja-authorization",
"description": "This is a ZF2 module that will provide an authorization layer to a ZF2 application.",
"type": "library",
"homepage": "https://github.com/ddelrio1986/NinjaAuthorization",
"license": "MIT",
"authors": [
{
"name": "Daniel Del Rio",
"email": "[email protected]",
"homepage": "https://github.com/ddelrio1986",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/ddelrio1986/NinjaAuthorization/issues",
"wiki": "https://github.com/ddelrio1986/NinjaAuthorization/wiki",
"source": "https://github.com/ddelrio1986/NinjaAuthorization"
},
"keywords": [
"zf2",
"acl",
"authorization",
"doctrine",
"ninja service layer"
],
"autoload": {
"psr-0": {
"NinjaAuthorization\\": "src/",
"NinjaAuthorizationTest\\": "tests/"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"ddelrio1986/ninja-service-layer": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
}
}