-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.53 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.53 KB
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
{
"name": "vatu/php-compatibility-config",
"description": "This package provides a configuration file for PHP Compatibility to be used to check projects against versions of PHP.",
"license": "MIT",
"type": "phpcodesniffer-standard",
"authors": [
{
"name": "Michael Bragg",
"email": "mike@vatu.dev"
}
],
"require": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.2",
"phpcompatibility/php-compatibility": "^10.0.0@dev",
"phpcompatibility/phpcompatibility-paragonie": "^2.0.0@dev",
"phpcompatibility/phpcompatibility-passwordcompat": "^2.0.0@dev",
"phpcompatibility/phpcompatibility-wp": "^3.0.0@dev"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.49"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"lock": false
},
"extra": {
"normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"scripts": {
"fix": [
"@composer fix:normalize"
],
"fix:normalize": [
"@composer normalize"
],
"phpcs-config": [
"vendor/bin/phpcs --config-set ignore_warnings_on_exit 1"
],
"test": [
"vendor/bin/phpcs ./tests/index.php --standard=phpcompatibility.dist.xml"
]
}
}