forked from zfcampus/zf-apigility-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.46 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
{
"name": "zfcampus/zf-apigility-skeleton",
"description": "Skeleton Application for Apigility",
"type": "project",
"license": "BSD-3-Clause",
"keywords": [
"api",
"apigility",
"framework",
"zf",
"zendframework"
],
"homepage": "http://apigility.org/",
"support": {
"issues": "https://github.com/zfcampus/zf-apigility-skeleton/issues",
"source": "https://github.com/zfcampus/zf-apigility-skeleton",
"rss": "https://github.com/zfcampus/zf-apigility-skeleton/releases.atom",
"chat": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/apigility"
},
"config": {
"process-timeout": 5000
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev",
"dev-develop": "1.6.x-dev"
}
},
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-component-installer": "^1.1.1 || ^2.1.1",
"zfcampus/zf-apigility": "^1.4",
"zfcampus/zf-apigility-documentation": "^1.3",
"zfcampus/zf-development-mode": "^3.2"
},
"require-dev": {
"zendframework/zend-developer-tools": "^1.2.1",
"zendframework/zend-test": "^2.6.1 || ^3.2",
"zfcampus/zf-apigility-admin": "^1.6",
"zfcampus/zf-asset-manager": "^1.2",
"zfcampus/zf-composer-autoloading": "^1.1.1 || ^2.1",
"zfcampus/zf-deploy": "^1.3"
},
"suggest": {
"zfcampus/zf-apigility-doctrine": "zfcampus/zf-apigility-doctrine ^2.2 to create Doctrine-Connected REST services",
"zfcampus/zf-http-cache": "zfcampus/zf-http-cache ^1.4 to add HTTP caching to your API",
"zfr/zfr-cors": "zfr/zfr-cors ^1.5 to add CORS support to your API"
},
"autoload": {
"psr-4": {
"Application\\": "module/Application/src/"
}
},
"autoload-dev": {
"psr-4": {
"ApplicationTest\\": "module/Application/test/"
},
"files": [
"src/Apigility/constants.php"
]
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"development-disable": "zf-development-mode disable",
"development-enable": "zf-development-mode enable",
"development-status": "zf-development-mode status",
"post-create-project-cmd": ["@development-enable"],
"serve": "php -S 0.0.0.0:8080 -t public/",
"test": "phpunit"
}
}