forked from Yoast/duplicate-post
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 973 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
{
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"wp-coding-standards/wpcs": "^2.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.0",
"automattic/vipwpcs": "^2.0",
"phpunit/phpunit": "^5.7",
"brain/monkey": "^2.5"
},
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"check-cs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set ignore_warnings_on_exit 1"
],
"check-vip": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -psl . ./compat/ ./src/ ./js/src/ --standard=WordPress-VIP-Go --runtime-set ignore_warnings_on_exit 1"
],
"fix-cs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf"
],
"test": [
"@php ./vendor/phpunit/phpunit/phpunit"
]
}
}