44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "woocommerce/woocommerce-admin",
|
|
"description": "A modern, javascript-driven WooCommerce Admin experience.",
|
|
"homepage": "https://github.com/woocommerce/woocommerce-admin",
|
|
"type": "wordpress-plugin",
|
|
"license": "GPL-3.0-or-later",
|
|
"prefer-stable": true,
|
|
"minimum-stability": "dev",
|
|
"require": {
|
|
"composer/installers": "1.7.0",
|
|
"automattic/jetpack-autoloader": "1.3.7"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "6.5.13",
|
|
"woocommerce/woocommerce-sniffs": "0.0.7"
|
|
},
|
|
"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"
|
|
}
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"includes/"
|
|
],
|
|
"psr-4": {
|
|
"Automattic\\WooCommerce\\Admin\\": "src/"
|
|
}
|
|
}
|
|
}
|