-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
38 lines (38 loc) · 989 Bytes
/
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
{
"name": "alleyinteractive/alley-coding-standards",
"description": "PHPCS sniffs for Alley Interactive",
"license": "GPL-2.0-or-later",
"type": "phpcodesniffer-standard",
"keywords": [
"phpcs",
"static analysis"
],
"require": {
"automattic/vipwpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.4"
},
"require-dev": {
"phpunit/phpunit": "^11.2"
},
"autoload-dev": {
"psr-4": {
"Alley\\WP\\Coding_Standards\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"alleyinteractive/composer-wordpress-autoloader": true
}
},
"scripts": {
"phpcbf": "phpcbf --standard=Alley-Interactive tests/*Test.php",
"phpcs": "phpcs --standard=Alley-Interactive tests/*Test.php -sn",
"phpcs:fixtures": "phpcs -sn --standard=Alley-Interactive tests/fixtures",
"phpunit": "phpunit",
"test": [
"@phpcs",
"@phpunit"
]
}
}