-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
41 lines (41 loc) · 1.09 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
39
40
41
{
"name": "wearerequired/wp-widget-disable",
"description": "WordPress plugin to disable sidebar and dashboard widgets with an easy to use interface.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"widgets"
],
"authors": [
{
"name": "required",
"email": "[email protected]",
"homepage": "https://required.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"wearerequired/wp-requirements-check": "~1.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0",
"phpunit/phpunit": "^7 || ^9",
"wearerequired/coding-standards": "^5.0",
"yoast/phpunit-polyfills": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"format": "vendor/bin/phpcbf --report-summary --report-source .",
"lint": "vendor/bin/phpcs --report-summary --report-source .",
"test": "vendor/bin/phpunit"
}
}