-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1003 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 1003 Bytes
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
{
"name": "bigwing/phpcs-composer",
"type": "phpcodesniffer-standard",
"version": "dev-master",
"license": "MIT",
"require": {
"php": ">=5.6.0,<8.0.0-dev",
"squizlabs/php_codesniffer": "^3.4.0",
"wp-coding-standards/wpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"roave/security-advisories": "dev-master"
},
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "Morgan Estes",
"email": "mestes@localiq.com",
"homepage": "https://bigwing.com"
},
{
"name": "Ephraim Gregor",
"email": "ephraim.gregor@10up.com"
}
],
"scripts": {
"config-cs": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"\"vendor/bin/phpcs\" --config-set default_standard BigWing-WP"
],
"post-install-cmd": "@config-cs",
"post-update-cmd": "@config-cs",
"lint": "\"vendor/bin/phpcs\" . "
}
}