forked from zfcampus/zf-apigility-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.31 KB
/
Copy pathcomposer.json
File metadata and controls
73 lines (73 loc) · 2.31 KB
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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "zfcampus/zf-apigility-admin",
"description": "Apigility Admin module",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"api",
"apigility",
"framework",
"zf2"
],
"homepage": "http://apigility.org/",
"support": {
"email": "apigility-users@zend.com",
"irc": "irc://irc.freenode.net/apigility",
"source": "https://github.com/zfcampus/zf-apigility-admin",
"issues": "https://github.com/zfcampus/zf-apigility-admin/issues"
},
"repositories": [
{ "type": "composer", "url": "https://packages.zendframework.com/" }
],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
}
},
"require": {
"php": ">=5.3.23",
"zendframework/zend-code": "~2.3",
"zendframework/zend-eventmanager": "~2.3",
"zendframework/zend-filter": "~2.3",
"zendframework/zend-http": "~2.3",
"zendframework/zend-inputfilter": "~2.3",
"zendframework/zend-modulemanager": "~2.3",
"zendframework/zend-mvc": "~2.3",
"zendframework/zend-servicemanager": "~2.3",
"zendframework/zend-stdlib": "~2.3",
"zendframework/zend-validator": "~2.3",
"zendframework/zend-view": "~2.3",
"zfcampus/zf-apigility": "~1.0",
"zfcampus/zf-apigility-admin-ui": "~1.0",
"zfcampus/zf-apigility-provider": "~1.0",
"zfcampus/zf-api-problem": "~1.0",
"zfcampus/zf-configuration": "~1.0",
"zfcampus/zf-content-negotiation": "~1.0",
"zfcampus/zf-content-validation": "~1.0",
"zfcampus/zf-hal": "~1.0",
"zfcampus/zf-mvc-auth": "~1.0",
"zfcampus/zf-oauth2": "~1.0",
"zfcampus/zf-rest": "~1.0",
"zfcampus/zf-rpc": "~1.0",
"zfcampus/zf-versioning": "~1.0"
},
"require-dev": {
"fabpot/php-cs-fixer": "*@dev",
"phpunit/PHPUnit": "3.7.*",
"zendframework/zend-config": "~2.3",
"zendframework/zend-loader": "~2.3"
},
"autoload": {
"psr-4": {
"ZF\\Apigility\\Admin\\": "src/",
"ZFTest\\Apigility\\Admin\\": "test/"
},
"psr-0": {
"Test\\": "vendor/"
},
"classmap": [
"Module.php"
]
}
}