-
Notifications
You must be signed in to change notification settings - Fork 132
/
composer.json
38 lines (38 loc) · 1.35 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
37
38
{
"name": "automattic/edit-flow",
"description": "WordPress plugin to accelerate your editorial workflow.",
"homepage": "http://editflow.org/",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"support": {
"issues": "https://github.com/Automattic/edit-flow/issues",
"forum": "https://wordpress.org/support/plugin/edit-flow",
"source": "https://github.com/Automattic/edit-flow"
},
"require": {
"composer/installers": "~1.0",
"php": ">=8.0"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"exussum12/coverage-checker": "^1.0.0",
"phpunit/phpunit": "^9.0",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"cs": [
"@php ./vendor/bin/phpcs -p -s -v -n . --standard=\"WordPress-VIP-Go\" --extensions=php --ignore=\"/vendor/*,/node_modules/*,/tests/*\""
],
"cbf": [
"@php ./vendor/bin/phpcbf -p -s -v -n . --standard=\"WordPress-VIP-Go\" --extensions=php --ignore=\"/vendor/*,/node_modules/*,/tests/*\""
],
"integration": "wp-env run tests-cli --env-cwd=wp-content/plugins/Edit-Flow ./vendor/bin/phpunit",
"integration-ms": "wp-env run tests-cli --env-cwd=wp-content/plugins/Edit-Flow /bin/bash -c 'WP_MULTISITE=1 ./vendor/bin/phpunit'"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}