WordPress-Coding-Standards/composer.json
jrfnl 1de3a9d718 Composer & Readme: update organisation name for PHPCompatibility
Since this week, the PHPCompatibility has been moved to a dedicated GitHub organisation account.

A PHPCompatibilityWP ruleset is now also available in a separate repo which already excludes all back-fills/poly-fills which WP provides.

For more details, see the release notes of the 8.2.0 release: https://github.com/PHPCompatibility/PHPCompatibility/releases/tag/8.2.0
2018-07-18 20:44:51 +02:00

34 lines
1.3 KiB
JSON

{
"name" : "wp-coding-standards/wpcs",
"description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress coding conventions",
"keywords" : ["phpcs", "standards", "WordPress"],
"license" : "MIT",
"authors" : [
{
"name" : "Contributors",
"homepage": "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/graphs/contributors"
}
],
"require" : {
"php" : ">=5.3",
"squizlabs/php_codesniffer": "^2.9.0 || ^3.0.2"
},
"require-dev" : {
"phpcompatibility/php-compatibility": "*"
},
"suggest" : {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically."
},
"minimum-stability" : "RC",
"support" : {
"issues": "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues",
"wiki" : "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/wiki",
"source": "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards"
},
"type" : "phpcodesniffer-standard",
"scripts" : {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths ../../..,../../phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths ../../..,../../phpcompatibility/php-compatibility"
}
}