-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 829 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 829 Bytes
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
{
"require-dev": {
"wp-coding-standards/wpcs": "^3.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.2",
"php-stubs/wordpress-stubs": "^6.9",
"php-stubs/wordpress-tests-stubs": "^6.8",
"spatie/phpunit-watcher": "^1.24",
"symfony/process": "^6.4",
"yoast/phpunit-polyfills": "^4.0",
"sirbrillig/phpcs-variable-analysis": "^2.13",
"wp-cli/i18n-command": "^2.6",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"scripts": {
"lint": "phpcs --standard=phpcs.xml.dist",
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"test": "phpunit",
"test:watch": "phpunit-watcher watch < /dev/tty",
"wp": "\"vendor/wp-cli/wp-cli/bin/wp\""
},
"config": {
"allow-plugins": true,
"platform": {
"php": "8.1.0"
}
}
}