woocommerce/composer.json

49 lines
1.3 KiB
JSON
Raw Normal View History

2016-07-14 14:07:22 +00:00
{
2016-07-14 14:09:57 +00:00
"name": "woocommerce/woocommerce",
2016-07-14 14:07:22 +00:00
"description": "An e-commerce toolkit that helps you sell anything. Beautifully.",
"homepage": "https://woocommerce.com/",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"require": {
2017-01-24 13:17:16 +00:00
"composer/installers": "~1.2"
2016-09-13 21:24:01 +00:00
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "^0.14",
2017-07-20 21:57:00 +00:00
"phpunit/phpunit": "6.2.3",
"woocommerce/woocommerce-git-hooks": "1.0.3",
2017-11-13 21:18:21 +00:00
"wimg/php-compatibility": "^8.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3"
2016-09-13 21:24:01 +00:00
},
"scripts": {
2017-06-27 03:02:23 +00:00
"pre-update-cmd": [
"WooCommerce\\GitHooks\\Hooks::preHooks"
],
"pre-install-cmd": [
"WooCommerce\\GitHooks\\Hooks::preHooks"
],
2016-09-13 21:24:01 +00:00
"post-install-cmd": [
2017-06-27 03:02:23 +00:00
"WooCommerce\\GitHooks\\Hooks::postHooks"
2016-09-15 22:18:35 +00:00
],
"post-update-cmd": [
2017-06-27 03:02:23 +00:00
"WooCommerce\\GitHooks\\Hooks::postHooks"
],
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p --standard=./phpcs.ruleset.xml"
],
"phpcbf": [
2017-12-04 16:44:39 +00:00
"phpcbf -p --standard=./phpcs.ruleset.xml"
2016-09-13 21:24:01 +00:00
]
},
"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"
}
2016-07-14 14:07:22 +00:00
}
}