-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 1.58 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
{
"name": "szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset",
"description": "Hybrid PHPCS ruleset for OOP WordPress development",
"type": "phpcodesniffer-standard",
"keywords": [
"phpcs",
"wordpress",
"psr12",
"dev"
],
"license": "MIT",
"support": {
"issues": "https://github.com/szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset/issues",
"source": "https://github.com/szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset"
},
"require": {
"php": "^7.4 || ^8.0",
"automattic/phpcs-neutron-ruleset": "^3.4",
"sirbrillig/phpcs-variable-analysis": "^2.0.1",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.8",
"wp-coding-standards/wpcs": "3.1.0 as 2.3.0"
},
"require-dev": {
"phpcompatibility/php-compatibility": "dev-develop as 10.0.0",
"phpcsstandards/phpcsdevcs": "^1.1"
},
"suggest": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"test:cs": "phpcs --standard=PHPCSDev PSR12NeutronRuleset/",
"test:e2e": "phpcs --standard=PSR12NeutronRuleset/ruleset.xml tests/smoketest.php",
"test:xml": "xmllint --noout --schema vendor/squizlabs/php_codesniffer/phpcs.xsd PSR12NeutronRuleset/ruleset.xml"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/szepeviktor"
}
]
}