2018-09-21 13:32:42 +00:00
|
|
|
{
|
|
|
|
"name": "woocommerce/wc-admin",
|
|
|
|
"description": "A modern, javascript-driven WooCommerce Admin experience.",
|
|
|
|
"homepage": "https://github.com/woocommerce/wc-admin",
|
|
|
|
"type": "wordpress-plugin",
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"prefer-stable": true,
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"require": {
|
|
|
|
"composer/installers": "~1.2"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"squizlabs/php_codesniffer": "*",
|
2018-10-19 20:10:13 +00:00
|
|
|
"wp-coding-standards/wpcs": "1.1.0",
|
2018-10-18 16:57:29 +00:00
|
|
|
"phpunit/phpunit": "6.5.13",
|
2018-09-21 13:32:42 +00:00
|
|
|
"woocommerce/woocommerce-sniffs": "*",
|
2018-10-19 20:42:45 +00:00
|
|
|
"wimg/php-compatibility": "9.0.0",
|
2018-10-18 16:57:29 +00:00
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": "0.4.4"
|
2018-09-21 13:32:42 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": [
|
|
|
|
"phpunit"
|
|
|
|
],
|
|
|
|
"phpcs": [
|
|
|
|
"phpcs -s -p"
|
|
|
|
],
|
|
|
|
"phpcbf": [
|
|
|
|
"phpcbf -p"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"scripts-description": {
|
|
|
|
"test": "Run unit tests",
|
|
|
|
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
|
|
|
|
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|