-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·41 lines (41 loc) · 1.06 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
{
"name": "calderawp/http",
"description": "A boilerplate for new composer based PHP projects.",
"license": "GPL-2.0",
"require": {
"php": "^7.2",
"inpsyde/wpsr7": "^1.0"
},
"require-dev": {
"php": "^7.2",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "3.*",
"inpsyde/wpsr7": "^1.0",
"guzzlehttp/guzzle": "^6.3"
},
"config": {
"platform": {
"php": "7.2"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"calderawp\\caldera\\Http\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"calderawp\\caldera\\Http\\Tests\\": "tests"
}
},
"scripts": {
"test": "composer test:unit",
"test:unit": "phpunit --testsuite=Unit",
"test:acceptance": "phpunit --testsuite=Acceptance",
"tests-now": "phpunit tests --group=now",
"sniffs": "phpcs src/ && phpcs src/",
"fixes": "phpcbf src/ && phpcbf tests/"
}
}