woocommerce/plugins/woocommerce-admin/composer.json

49 lines
1.2 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"
},
"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/"
],
"files": [
"includes/core-functions.php",
"includes/feature-config.php",
"includes/page-controller-functions.php",
"includes/wc-admin-update-functions.php"
],
"psr-4": {
"Automattic\\WooCommerce\\Admin\\": "src/"
}
}
}