-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
30 lines (30 loc) · 953 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
{
"name": "automattic/vip-governance",
"description": "A WordPress plugin that adds governance to the block editor",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"scripts": {
"lint": "phpcs",
"phpcs": "phpcs",
"phpcs-fix": "phpcbf",
"test": "wp-env run tests-cli --env-cwd=wp-content/plugins/vip-governance-plugin ./vendor/bin/phpunit -c phpunit.xml.dist",
"test-multisite": "wp-env run tests-cli --env-cwd=wp-content/plugins/vip-governance-plugin ./vendor/bin/phpunit -c tests/phpunit/multisite.xml"
},
"require": {
"php": ">=8.0",
"seld/jsonlint": "^1.10"
},
"require-dev": {
"automattic/vipwpcs": "3.0.0",
"phpcompatibility/phpcompatibility-wp": "2.1.4",
"phpunit/phpunit": "9.6.13",
"yoast/phpunit-polyfills": "2.0.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"mnsami/composer-custom-directory-installer": false
},
"sort-packages": true
}
}