woocommerce/composer.json

71 lines
1.7 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",
"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": {
"automattic/jetpack-autoloader": "^1.2.0",
2019-07-19 01:02:58 +00:00
"php": ">=5.6|>=7.0",
"composer/installers": "1.7.0",
"woocommerce/woocommerce-blocks": "2.4.3",
2019-07-16 14:36:10 +00:00
"woocommerce/woocommerce-rest-api": "1.0.3"
2016-09-13 21:24:01 +00:00
},
"require-dev": {
"phpunit/phpunit": "7.5.16",
"woocommerce/woocommerce-sniffs": "0.0.8"
2016-09-13 21:24:01 +00:00
},
"config": {
"platform": {
2019-07-19 01:02:58 +00:00
"php": "7.1"
},
"preferred-install": {
"woocommerce/woocommerce-rest-api": "dist",
"woocommerce/woocommerce-blocks": "dist"
},
"sort-packages": true
},
"autoload": {
"exclude-from-classmap": [
"includes/legacy",
"includes/libraries"
2019-06-25 12:12:02 +00:00
],
"psr-4": {
"Automattic\\WooCommerce\\": "src/"
}
},
2016-09-13 21:24:01 +00:00
"scripts": {
"post-install-cmd": [
"sh ./bin/package-update.sh"
],
"post-update-cmd": [
"sh ./bin/package-update.sh"
],
"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": {
"installer-paths": {
2019-06-24 11:40:20 +00:00
"packages/woocommerce-rest-api": ["woocommerce/woocommerce-rest-api"],
"packages/woocommerce-blocks": ["woocommerce/woocommerce-blocks"]
},
"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
}
}