-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 923 Bytes
/
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
{
"name": "hamworks/schedule-terms",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Hiroshi Urabe",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"wp-phpunit/wp-phpunit": "^6.0.0",
"yoast/phpunit-polyfills": "^1.0.1"
},
"autoload": {
"psr-4": {
"HAMWORKS\\WP\\Schedule_Terms\\": "./includes",
"HAMWORKS\\WP\\Schedule_Terms\\Tests\\": "./tests/php"
}
},
"scripts": {
"test": "phpunit",
"format": "phpcbf --standard=./phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=./phpcs.xml.dist",
"phpcs": "phpcs --standard=./phpcs.xml.dist"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}