-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 865 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 865 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
{
"name": "php-composter/php-composter-phpcs-wpcs",
"description": "PHP Composter PHP Code Sniffer for WordPress Coding Standards",
"type": "php-composter-action",
"require": {
"php-composter/php-composter": "^0.2.0",
"squizlabs/php_codesniffer": "^2.5",
"wp-coding-standards/wpcs": "^0.14.0",
"dealerdirect/phpcodesniffer-composer-installer": "dev-master"
},
"license": "MIT",
"authors": [
{
"name": "Gabor Javorszky",
"email": "gabor@javorszky.co.uk"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"PHPComposter\\PHPComposter_PHPCS_WPCS\\": "src/"
}
},
"extra": {
"php-composter-hooks": {
"10.pre-commit": "PHPComposter\\PHPComposter_PHPCS_WPCS\\Sniffer::preCommit"
}
}
}