-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 1.18 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
{
"name": "lipemat/wp-phpcs",
"description": "PHP Codesniffer for a WordPress plugin",
"type": "phpcodesniffer-standard",
"license": "MIT",
"authors": [
{
"name": "lipemat",
"email": "[email protected]"
}
],
"archive": {
"exclude": ["/dev"]
},
"config": {
"vendor-dir": "vendor",
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4.0",
"automattic/vipwpcs": "^3.0.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.2",
"phpcsstandards/phpcsextra": "^1.0.2",
"sirbrillig/phpcs-variable-analysis": "^v2.11.17",
"squizlabs/php_codesniffer": "^3.6.1",
"wp-coding-standards/wpcs": "^3.0.0"
},
"require-dev": {
"ext-json": "*",
"johnbillion/args": "^1",
"lipemat/wordpress-libs": "^4",
"roave/security-advisories": "dev-latest",
"phpcompatibility/php-compatibility": "dev-develop as 9.4.0"
},
"scripts": {
"git-hooks": "dev/bin/git-hooks.sh"
}
}