65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "woocommerce/woocommerce-blocks",
|
|
"description": "WooCommerce blocks for the Gutenberg editor.",
|
|
"homepage": "https://woocommerce.com/",
|
|
"type": "wordpress-plugin",
|
|
"keywords": [
|
|
"gutenberg",
|
|
"woocommerce",
|
|
"blocks"
|
|
],
|
|
"license": "GPL-3.0-or-later",
|
|
"prefer-stable": true,
|
|
"minimum-stability": "dev",
|
|
"require": {
|
|
"composer/installers": "^1.7.0",
|
|
"automattic/jetpack-autoloader": "^2.9.1"
|
|
},
|
|
"require-dev": {
|
|
"wp-phpunit/wp-phpunit": "^6.0",
|
|
"woocommerce/woocommerce-sniffs": "0.1.0",
|
|
"yoast/phpunit-polyfills": "^1.0",
|
|
"johnbillion/wp-hooks-generator": "^0.9.0",
|
|
"mockery/mockery": "^1.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Automattic\\WooCommerce\\StoreApi\\": "src/StoreApi/",
|
|
"Automattic\\WooCommerce\\Blocks\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/StoreApi/deprecated.php",
|
|
"src/StoreApi/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Automattic\\WooCommerce\\Blocks\\Tests\\": "tests/php"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"phpcs": [
|
|
"phpcs --extensions=php -s -p"
|
|
],
|
|
"phpcbf": [
|
|
"phpcbf -p"
|
|
]
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "7.4.24"
|
|
},
|
|
"allow-plugins": {
|
|
"automattic/jetpack-autoloader": true,
|
|
"composer/installers": true,
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"scripts-description": {
|
|
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
|
|
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
|
|
}
|
|
}
|
|
}
|