-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
26 lines (26 loc) · 968 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
{
"name": "automattic/vip-bundle-decoupled",
"description": "A WordPress plugin bundle to support decoupled WordPress",
"type": "wordpress-plugin",
"require-dev": {
"php": ">=7.4",
"automattic/vipwpcs": "3.0.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^9.5",
"yoast/phpunit-polyfills": "2.0.0"
},
"scripts": {
"phpcs": "phpcs",
"phpcs-fix": "phpcbf",
"test": "wp-env run tests-cli --env-cwd=wp-content/plugins/vip-decoupled-bundle ./vendor/bin/phpunit -c phpunit.xml.dist",
"test-multisite": "wp-env run tests-cli --env-cwd=wp-content/plugins/vip-decoupled-bundle ./vendor/bin/phpunit -c tests/phpunit/multisite.xml"
},
"license": "GPL-2.0-or-later",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"mnsami/composer-custom-directory-installer": false
},
"sort-packages": true
}
}