-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·45 lines (44 loc) · 1.33 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
{
"name": "calderawp/ghost-runner",
"description": "Ghost Inspector Client as a WordPress Plugin",
"type": "wordpress-plugin",
"license": "GPLv2+",
"authors": [
{
"name": "Josh Pollock",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.6",
"rmccue/requests": ">=1.0",
"pimple/pimple": "^3.2"
},
"autoload": {
"psr-0": {"Requests": "library/"},
"psr-4": {
"calderawp\\ghost\\": "src"
}
},
"scripts" : {
"tests" : "composer fixes && composer sniffs && composer test",
"test": "composer unit-tests",
"unit-tests": "phpunit --testsuite=unit",
"phpunit-v": "phpunit --version",
"sniffs" : "phpcs src/ && phpcs tests/",
"fixes" : "phpcbf src/ && phpcbf tests/",
"lints" : "parallel-lint ./src --blame --exclude vendor && parallel-lint ./tests --blame --exclude vendor",
"production-update" : "composer update --prefer-stable -o --no-dev"
},
"autoload-dev": {
"psr-4": {
"calderawp\\ghost\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.2",
"jakub-onderka/php-parallel-lint": "^1.0"
}
}