-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·42 lines (42 loc) · 1.19 KB
/
composer.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.19 KB
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
{
"name": "calderawp/forms",
"description": "Forms",
"license": "GPL-2.0",
"require": {
"php": "^7.2",
"psr/container": "^1.0"
},
"require-dev": {
"php": "^7.2",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "3.*"
},
"config": {
"platform": {
"php": "7.2"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"calderawp\\caldera\\Forms\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"calderawp\\caldera\\Forms\\Tests\\": "tests-unit",
"calderawp\\caldera\\Forms\\Tests\\Integration\\": "tests-integration"
}
},
"scripts": {
"test": "composer tests",
"tests": "composer test:unit && composer test:integration && composer test:acceptance",
"test:unit": "phpunit --testsuite=Unit",
"test:integration": "phpunit --testsuite=Integration",
"test:acceptance": "phpunit --testsuite=Acceptance",
"tests-now": "phpunit tests --group=now",
"sniffs": "phpcs src/ && phpcs src/",
"fixes": "phpcbf src/ && phpcbf tests/"
}
}