This repository has been archived by the owner on Jan 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
61 lines (61 loc) · 1.85 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
{
"name": "zfcampus/apigility.org",
"type": "project",
"description": "Apigility web site",
"keywords": [
"apigility",
"zf",
"api",
"zend framework"
],
"homepage": "https://apigility.org",
"license": "BSD-3-Clause",
"config": {
"sort-packages": true,
"platform": {
"php": "7.0"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/zfcampus/apigility-documentation.git"
}
],
"require": {
"php": "^7.0",
"league/commonmark": "^0.15.7",
"rwoverdijk/assetmanager": "^1.7.3",
"webuni/commonmark-table-extension": "^0.6.1",
"zendframework/zend-filter": "^2.7.2",
"zendframework/zend-mvc": "^3.1",
"zendframework/zend-navigation": "^2.8.2",
"zfcampus/apigility-documentation": "dev-master"
},
"require-dev": {
"google/apiclient": "^2.2",
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-console": "^2.6",
"zfcampus/zf-development-mode": "^3.1"
},
"autoload": {
"psr-4": {
"Application\\": "module/Application/src/",
"Documentation\\": "module/Documentation/src/"
}
},
"scripts": {
"build": [
"composer update zfcampus/apigility-documentation",
"@php ./bin/get-releases.php",
"cd asset && npm install --no-save && gulp && rm -Rf node_modules",
"rm -f data/cache/module-classmap-cache.php",
"rm -f data/cache/module-config-cache.php"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"development-disable": "zf-development-mode disable",
"development-enable": "zf-development-mode enable",
"development-status": "zf-development-mode status"
}
}