-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 730 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 730 Bytes
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
{
"name": "anklimsk/wpkg-express-2",
"description": "A web-based frontend to WPKG",
"type": "project",
"keywords": ["wpkg", "wpkg-express-2"],
"homepage": "https://anklimsk.github.io/wpkg-express-2",
"license": "GPL-3.0-or-later",
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "^3.7",
"cakephp/cakephp-codesniffer": "^1.0.0"
},
"config": {
"vendor-dir": "vendors/",
"process-timeout": 0
},
"bin": [
"app/Cake/Console/cake"
],
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "./vendors/bin/phpcs -p --extensions=php --standard=CakePHP ./app",
"test": "./app/Console/cake test app AllApp --stderr"
},
"minimum-stability": "dev",
"prefer-stable": true
}