This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathcomposer.json
96 lines (96 loc) · 3.35 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"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": "[email protected]",
"irc": "irc://irc.freenode.net/apigility",
"source": "https://github.com/zfcampus/zf-apigility-admin",
"issues": "https://github.com/zfcampus/zf-apigility-admin/issues"
},
"extra": {
"branch-alias": {
"dev-master": "1.8.x-dev",
"dev-develop": "1.9.x-dev"
},
"zf": {
"module": "ZF\\Apigility\\Admin"
}
},
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-code": "^2.6.3 || ^3.2",
"zendframework/zend-eventmanager": "^2.6.3 || ^3.0.1",
"zendframework/zend-filter": "^2.8",
"zendframework/zend-http": "^2.8",
"zendframework/zend-hydrator": "^1.1 || ^2.4 || ^3.0",
"zendframework/zend-inputfilter": "^2.8.1",
"zendframework/zend-modulemanager": "^2.8.2",
"zendframework/zend-mvc": "^2.7.15 || ^3.1.1",
"zendframework/zend-servicemanager": "^2.7.10 || ^3.3.2",
"zendframework/zend-stdlib": "^2.7.7 || ^3.2",
"zendframework/zend-validator": "^2.10.2",
"zendframework/zend-view": "^2.10",
"zfcampus/zf-apigility": "^1.4",
"zfcampus/zf-apigility-admin-ui": "^1.3.9",
"zfcampus/zf-apigility-provider": "^1.3",
"zfcampus/zf-api-problem": "^1.3",
"zfcampus/zf-configuration": "1.3.3",
"zfcampus/zf-content-negotiation": "^1.4",
"zfcampus/zf-content-validation": "^1.4",
"zfcampus/zf-hal": "^1.5",
"zfcampus/zf-oauth2": "^1.5",
"zfcampus/zf-mvc-auth": "^1.5",
"zfcampus/zf-rest": "^1.4",
"zfcampus/zf-rpc": "^1.4",
"zfcampus/zf-versioning": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5",
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-config": "^2.6 || ^3.2",
"zendframework/zend-loader": "^2.6",
"zfcampus/zf-deploy": "^1.3"
},
"autoload": {
"psr-4": {
"ZF\\Apigility\\Admin\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Test\\": "vendor/"
},
"psr-4": {
"AuthConf\\": "test/Model/TestAsset/module/AuthConf/",
"AuthConfDefaults\\": "test/Model/TestAsset/module/AuthConfDefaults/",
"AuthConfWithConfig\\": "test/Model/TestAsset/module/AuthConfWithConfig/",
"BarConf\\": "test/Model/TestAsset/module/BarConf/src/BarConf/",
"FooConf\\": "test/Model/TestAsset/module/FooConf/src/FooConf/",
"BazConf\\": "test/Model/TestAsset/module/BazConf",
"InputFilter\\": "test/Model/TestAsset/module/InputFilter/",
"Version\\": "test/Model/TestAsset/module/Version/src/Version/",
"ZFTest\\Apigility\\Admin\\": "test/"
}
},
"bin": [
"bin/apigility-upgrade-to-1.5"
],
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors",
"cs-fix": "phpcbf --colors",
"test": "phpunit --colors=always"
}
}