-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.28 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
{
"name": "pronamic/wp-coding-standards",
"description": "Pronamic WordPress WordPress Coding Standards for PHP_CodeSniffer.",
"keywords": [
"phpcs",
"standards",
"wordpress",
"pronamic"
],
"homepage": "https://github.com/pronamic/wp-coding-standards",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Pronamic",
"email": "[email protected]",
"homepage": "https://www.pronamic.eu/",
"role": "Company"
},
{
"name": "Remco Tolsma",
"email": "[email protected]",
"homepage": "https://www.remcotolsma.nl/",
"role": "Developer"
}
],
"type": "phpcodesniffer-standard",
"support": {
"issues": "https://github.com/pronamic/wp-coding-standards/issues",
"source": "https://github.com/pronamic/wp-coding-standards"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=8.0",
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"squizlabs/php_codesniffer": "^3.9",
"wp-coding-standards/wpcs": "^3.1"
},
"prefer-stable": true,
"scripts": {
"test": [
"vendor/bin/phpcs --standard=PronamicWP tests/test.php"
]
}
}