mirror of
https://ghproxy.net/https://github.com/wp-cli/handbook.git
synced 2026-07-26 12:37:22 +08:00
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "wp-cli/handbook",
|
|
"description": "Source files for the handbook that is generated for make.wordpress.org.",
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
"phpstan/extension-installer": true
|
|
},
|
|
"sort-packages": true
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"WP_CLI\\Handbook\\": "bin/"
|
|
},
|
|
"files": [
|
|
"bin/handbook-command.php"
|
|
]
|
|
},
|
|
"require-dev": {
|
|
"wp-cli/wp-cli": "^2.13",
|
|
"wp-cli/wp-cli-tests": "^5.0.3"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"behat": "run-behat-tests",
|
|
"behat-rerun": "rerun-behat-tests",
|
|
"lint": "run-linter-tests",
|
|
"phpcs": "run-phpcs-tests",
|
|
"phpcbf": "run-phpcbf-cleanup",
|
|
"phpstan": "run-phpstan-tests",
|
|
"phpunit": "run-php-unit-tests",
|
|
"prepare-tests": "install-package-tests",
|
|
"test": [
|
|
"@lint",
|
|
"@phpcs",
|
|
"@phpstan",
|
|
"@phpunit",
|
|
"@behat"
|
|
]
|
|
}
|
|
}
|