forked from ZF-Commons/zfc-rbac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 934 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
{
"name": "zf-commons/zfc-rbac",
"description": "Zend Framework 2 Module that provides a layer of features of Zend\\Permissions\\Rbac",
"type": "library",
"keywords": [
"module",
"zf2"
],
"homepage": "http://www.github.com/ZF-Commons/ZfcRbac/",
"authors": [
{
"name": "Kyle Spraggs",
"email": "[email protected]",
"homepage": "http://www.spiffyjr.me/"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-mvc": ">=2.1",
"zendframework/zend-permissions-rbac": ">=2.1",
"zendframework/zend-servicemanager": ">=2.1",
"zendframework/zend-view": ">=2.1"
},
"suggests": {
"zendframework/zend-developer-tools": "zend-developer-tools if you want to show informations about the roles"
},
"autoload": {
"psr-0": {
"ZfcRbac\\": "src/"
}
}
}