2018-09-21 13:32:42 +00:00
|
|
|
{
|
2020-02-14 02:23:21 +00:00
|
|
|
"name": "woocommerce/woocommerce-admin",
|
2022-01-25 22:55:50 +00:00
|
|
|
"version": "3.3.0-dev",
|
2020-02-14 02:23:21 +00:00
|
|
|
"description": "A modern, javascript-driven WooCommerce Admin experience.",
|
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce-admin",
|
|
|
|
"type": "wordpress-plugin",
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"prefer-stable": true,
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"require": {
|
2020-10-28 17:12:14 +00:00
|
|
|
"composer/installers": "^1.9.0",
|
2021-01-21 01:11:30 +00:00
|
|
|
"php": ">=7.0",
|
2021-02-12 00:23:19 +00:00
|
|
|
"automattic/jetpack-autoloader": "^2.9.1"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2020-11-02 19:47:00 +00:00
|
|
|
"woocommerce/woocommerce-sniffs": "0.1.0",
|
2021-04-07 17:28:03 +00:00
|
|
|
"suin/phpcs-psr4-sniff": "^2.2",
|
2021-07-09 02:03:51 +00:00
|
|
|
"bamarni/composer-bin-plugin": "^1.4",
|
2021-09-23 10:01:52 +00:00
|
|
|
"automattic/jetpack-changelogger": "^1.1",
|
|
|
|
"yoast/phpunit-polyfills": "^1.0"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"platform": {
|
|
|
|
"php": "7.1"
|
2022-01-11 20:14:28 +00:00
|
|
|
},
|
|
|
|
"allow-plugins": {
|
|
|
|
"automattic/jetpack-autoloader": true,
|
|
|
|
"bamarni/composer-bin-plugin": true,
|
|
|
|
"composer/installers": true,
|
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
2020-02-14 02:23:21 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-04-07 17:28:03 +00:00
|
|
|
"bin": "echo 'bin not installed'",
|
2021-07-09 02:03:51 +00:00
|
|
|
"post-install-cmd": [
|
|
|
|
"@composer bin all install --ansi"
|
|
|
|
],
|
|
|
|
"post-update-cmd": [
|
|
|
|
"@composer bin all update --ansi"
|
|
|
|
],
|
2020-02-14 02:23:21 +00:00
|
|
|
"test": [
|
|
|
|
"phpunit"
|
|
|
|
],
|
|
|
|
"phpcs": [
|
|
|
|
"phpcs -s -p"
|
|
|
|
],
|
|
|
|
"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"
|
2021-04-07 17:28:03 +00:00
|
|
|
},
|
|
|
|
"bamarni-bin": {
|
|
|
|
"target-directory": "bin/composer"
|
2021-07-09 02:03:51 +00:00
|
|
|
},
|
|
|
|
"changelogger": {
|
|
|
|
"changelog": "./changelog.txt",
|
|
|
|
"formatter": {
|
|
|
|
"filename": "bin/changelogger/WCAdminFormatter.php"
|
|
|
|
},
|
|
|
|
"versioning": "semver",
|
|
|
|
"changes-dir": "./changelogs",
|
|
|
|
"types": [
|
|
|
|
"Fix",
|
|
|
|
"Add",
|
|
|
|
"Update",
|
|
|
|
"Dev",
|
|
|
|
"Tweak",
|
|
|
|
"Performance",
|
|
|
|
"Enhancement"
|
|
|
|
]
|
2020-02-14 02:23:21 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2022-02-16 12:50:33 +00:00
|
|
|
"Automattic\\WooCommerce\\Admin\\": "src/",
|
|
|
|
"Automattic\\WooCommerce\\Internal\\Admin\\": "src-internal/Admin/"
|
2020-02-14 02:23:21 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-21 13:32:42 +00:00
|
|
|
}
|