-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "stellarwp/coding-standards",
"description": "Code sniffing rules for StellarWP",
"type": "phpcodesniffer-standard",
"license": "GPL-3.0+",
"keywords": [
"phpcs",
"standards",
"WordPress"
],
"authors": [
{
"name": "StellarWP",
"email": "[email protected]"
},
{
"name": "Matthew Batchelder",
"email": "[email protected]"
}
],
"require": {
"automattic/vipwpcs": "^3.0",
"php": ">=7.4",
"slevomat/coding-standard": "^8.14.0",
"squizlabs/php_codesniffer": "^3.8.0",
"wp-coding-standards/wpcs": "^3.0.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/php-compatibility": "^9"
},
"suggest": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically."
},
"scripts": {
"install-codestandards": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"ruleset": "bin/ruleset-tests",
"lint": [
"bin/php-lint",
"bin/xml-lint"
],
"phpcs": "bin/phpcs",
"phpunit": "bin/unit-tests",
"test": [
"@lint",
"@ruleset",
"@phpunit",
"@phpcs"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}