This repository has been archived by the owner on May 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 161
/
composer.json
62 lines (62 loc) · 2.21 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
61
62
{
"name": "bjyoungblood/bjy-authorize",
"description": "Zend\\Acl based firewall system for ZF2 dispatch protection",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "https://github.com/bjyoungblood/BjyAuthorize",
"keywords": [
"zf2",
"acl",
"zfc-user"
],
"authors": [
{
"name": "Ben Youngblood",
"email": "[email protected]",
"homepage": "http://bjyoungblood.com/",
"role": "Developer"
},
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.com/",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"zendframework/zend-permissions-acl": "~2.2",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-eventmanager": "~2.2",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-http": "~2.2",
"zendframework/zend-view": "~2.2",
"zendframework/zend-cache": "~2.2"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"doctrine/common": ">=2.3,<2.5-dev",
"zendframework/zend-developer-tools": "0.*",
"zf-commons/zfc-user": "1.*",
"squizlabs/php_codesniffer": "1.4.*",
"satooshi/php-coveralls": "~0.6"
},
"suggests": {
"zendframework/zend-developer-tools": "if you need to see current authorization details while developing",
"zf-commons/zfc-user": "zfc-user provides a good default setup to get started with bjyauthorize",
"zf-commons/zfc-user-doctrine-orm": "If you want to use BjyAuthorize with Doctrine ORM",
"zf-commons/zfc-user-doctrine-mongo-odm": "If you want to use BjyAuthorize with Doctrine ODM"
},
"autoload": {
"psr-0": {
"BjyAuthorize\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.5-dev"
}
},
"abandoned": true
}