-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·40 lines (40 loc) · 1.04 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
{
"name": "calderawp/data-source",
"description": "Caldera data sourcing",
"license": "GPL-2.0",
"require": {
"php": "^7.2"
},
"require-dev": {
"php": "^7.2",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "3.*",
"antecedent/patchwork": "^2.0",
"brain/monkey": "^2.2"
},
"config": {
"platform": {
"php": "7.2"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"calderawp\\caldera\\DataSource\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"calderawp\\caldera\\DataSource\\Tests\\": "tests"
}
},
"scripts": {
"test": "composer test:unit",
"test:unit": "phpunit tests --testsuite=Unit",
"test:integration": "phpunit tests --testsuite=Integration",
"tests-now": "phpunit tests --group=now",
"sniffs": "phpcs src/ && phpcs src/",
"fixes": "phpcbf src/ && phpcbf tests/"
}
}