-
Notifications
You must be signed in to change notification settings - Fork 55
/
composer.json
36 lines (36 loc) · 1.19 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
{
"name": "wordpress/health-check",
"type": "wordpress-plugin",
"description": "WordPress site health tester, and troubleshooting tools for end users and anyone providing support",
"keywords": [
"support",
"plugin",
"WordPress"
],
"license": "GPL-2.0-or-later",
"require": {
"php": ">=5.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "~1.0.0",
"wp-coding-standards/wpcs": "~2.3.0",
"phpcompatibility/phpcompatibility-wp": "~2.1.0",
"phpunit/phpunit": "~7.5.20"
},
"scripts": {
"compat": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=phpcompat.xml.dist --report=summary,source",
"phpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --report=summary,source",
"phpcs:full": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"fix-phpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --report=summary,source"
},
"support": {
"issues": "https://github.com/WordPress/health-check/issues",
"source": "https://github.com/WordPress/health-check"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}