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 52
/
composer.json
81 lines (81 loc) · 2.79 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
{
"name": "zfcampus/zf-apigility",
"description": "Apigility module for Zend Framework",
"license": "BSD-3-Clause",
"keywords": [
"zf",
"zendframework",
"api",
"apigility",
"framework"
],
"support": {
"issues": "https://github.com/zfcampus/zf-apigility/issues",
"source": "https://github.com/zfcampus/zf-apigility",
"rss": "https://github.com/zfcampus/zf-apigility/releases.atom",
"chat": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/apigility"
},
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-db": "^2.8.1",
"zendframework/zend-eventmanager": "^2.6.3 || ^3.0.1",
"zendframework/zend-loader": "^2.5.1",
"zendframework/zend-mvc": "^2.7.9 || ^3.0.2",
"zendframework/zend-paginator": "^2.7",
"zendframework/zend-servicemanager": "^2.7.6 || ^3.1.1",
"zendframework/zend-stdlib": "^2.7.7 || ^3.0.1",
"zfcampus/zf-api-problem": "^1.2.1",
"zfcampus/zf-apigility-provider": "^1.2",
"zfcampus/zf-content-negotiation": "^1.2.2",
"zfcampus/zf-content-validation": "^1.3.3",
"zfcampus/zf-hal": "^1.4.1",
"zfcampus/zf-mvc-auth": "^1.4.1",
"zfcampus/zf-oauth2": "^1.4",
"zfcampus/zf-rest": "^1.3.1",
"zfcampus/zf-rpc": "^1.3",
"zfcampus/zf-versioning": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5",
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-http": "^2.5.4"
},
"suggest": {
"alcaeus/mongo-php-adapter": "^1.0.5, if you are using ext/mongodb and wish to use the MongoConnectedListener.",
"rwoverdijk/assetmanager": "^1.7, to install the assets used by zf-apigility-welcome and/or zf-apigility-admin-ui (may not yet be released)",
"zfcampus/zf-asset-manager": "^1.0, to install the assets used by zf-apigility-welcome and/or zf-apigility-admin-ui, until rwoverdijk/assetmanager 1.7 is released"
},
"autoload": {
"psr-4": {
"ZF\\Apigility\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZFTest\\Apigility\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev",
"dev-develop": "1.5.x-dev"
},
"zf": {
"module": "ZF\\Apigility"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}