-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 1.01 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
{
"name": "timnolte/dev-shell",
"description": "Development Composer shell dependencies.",
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.6",
"phpcompatibility/php-compatibility": "*",
"wp-coding-standards/wpcs": "*",
"phpcompatibility/phpcompatibility-wp": "*"
},
"require": {
"squizlabs/php_codesniffer": "*",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "*",
"consolidation/cgr": "^2.0",
"bamarni/symfony-console-autocomplete": "^1.3",
"nikic/php-parser": "^4.5",
"phpstan/extension-installer": "^1.0",
"szepeviktor/phpstan-wordpress": "^0.6.1"
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs"
},
"extra": {
"phpstan": {
"includes": {
}
}
}
}