woocommerce/composer.json

40 lines
965 B
JSON
Raw Normal View History

2016-07-14 14:07:22 +00:00
{
2016-07-14 14:09:57 +00:00
"name": "woocommerce/woocommerce",
"description": "An eCommerce toolkit that helps you sell anything. Beautifully.",
2016-07-14 14:07:22 +00:00
"homepage": "https://woocommerce.com/",
"type": "wordpress-plugin",
2018-01-24 16:13:45 +00:00
"license": "GPL-3.0-or-later",
2018-02-02 13:20:16 +00:00
"prefer-stable": true,
"minimum-stability": "dev",
2016-07-14 14:07:22 +00:00
"require": {
"composer/installers": "1.6.0"
2016-09-13 21:24:01 +00:00
},
"require-dev": {
2019-01-08 11:07:32 +00:00
"apigen/apigen": "4.1.2",
"nette/utils": "2.5.3",
"phpunit/phpunit": "6.5.14",
2019-01-08 11:07:32 +00:00
"woocommerce/woocommerce-sniffs": "0.0.5"
2016-09-13 21:24:01 +00:00
},
"scripts": {
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
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
}
}