woocommerce/plugins/woocommerce-beta-tester/composer.json

61 lines
1.6 KiB
JSON
Raw Normal View History

2018-06-04 19:06:43 +00:00
{
"name": "woocommerce/woocommerce-beta-tester",
"description": "Run the beta versions of WooCommerce.",
"homepage": "https://woocommerce.com/",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
2022-03-18 16:56:28 +00:00
"composer/installers": "~1.7"
2018-06-04 19:06:43 +00:00
},
"require-dev": {
"phpunit/phpunit": "6.5.14",
2022-04-20 23:39:41 +00:00
"woocommerce/woocommerce-sniffs": "^0.1.2",
"automattic/jetpack-changelogger": "3.0.2"
2018-06-04 19:06:43 +00:00
},
"scripts": {
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
2018-06-04 19:06:43 +00:00
"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"
2022-04-20 23:39:41 +00:00
},
"changelogger": {
"formatter": {
"filename": "../../tools/changelogger/PluginFormatter.php"
},
"types": {
"fix": "Fixes an existing bug",
"add": "Adds functionality",
"update": "Update existing functionality",
"dev": "Development related task",
"tweak": "A minor adjustment to the codebase",
"performance": "Address performance issues",
"enhancement": "Improve existing functionality"
},
"versioning": "wordpress",
"changelog": "NEXT_CHANGELOG.md"
}
2022-03-18 16:56:28 +00:00
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
2018-06-04 19:06:43 +00:00
}
}