forked from bjyoungblood/BjyAuthorize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.82 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
{
"name": "olliebrennan/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.1.*",
"zendframework/zend-mvc": "2.1.*",
"zendframework/zend-eventmanager": "2.1.*",
"zendframework/zend-servicemanager": "2.1.*",
"zendframework/zend-view": "2.1.*"
},
"require-dev": {
"doctrine/common": "*",
"zendframework/zend-developer-tools": "*",
"zf-commons/zfc-user": "0.1.*"
},
"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"
},
"autoload": {
"psr-0": {
"BjyAuthorize\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}