forked from ZF-Commons/zfc-rbac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "zf-commons/zfc-rbac",
"description": "Zend Framework 2 Module that provides a layer of features of Zend\\Permissions\\Rbac",
"type": "library",
"license": "MIT",
"keywords": [
"module",
"zf2",
"rbac",
"permissions"
],
"homepage": "http://www.github.com/ZF-Commons/zfc-rbac",
"authors": [
{
"name": "Kyle Spraggs",
"email": "[email protected]",
"homepage": "http://www.spiffyjr.me/"
},
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
},
{
"name": "Jean-Marie Leroux",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-servicemanager": "~2.2",
"zfr/rbac": "~1.2"
},
"require-dev": {
"zendframework/zendframework": "~2.2",
"zendframework/zend-developer-tools": "dev-master",
"phpunit/phpunit": "~3.7",
"squizlabs/php_codesniffer": "1.4.*",
"satooshi/php-coveralls": "~0.6",
"doctrine/common": "~2.4",
"doctrine/doctrine-module": "~0.8",
"doctrine/doctrine-orm-module": "~0.8"
},
"suggest": {
"zendframework/zend-developer-tools": "if you want to show information about the roles",
"doctrine/doctrine-module": "if you want to use Doctrine role provider"
},
"autoload": {
"psr-0": {
"ZfcRbac\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.4-dev",
"dev-develop": "3.0-dev"
}
}
}