mirror of
https://gh.wpcy.net/https://github.com/wp-cli/scaffold-command.git
synced 2026-05-01 01:47:19 +08:00
70 lines
1.8 KiB
JSON
70 lines
1.8 KiB
JSON
{
|
|
"name": "wp-cli/scaffold-command",
|
|
"type": "wp-cli-package",
|
|
"description": "Generates code for post types, taxonomies, blocks, plugins, child themes, etc.",
|
|
"homepage": "https://github.com/wp-cli/scaffold-command",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Daniel Bachhuber",
|
|
"email": "daniel@runcommand.io",
|
|
"homepage": "https://runcommand.io"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^5.6 || ^7.0",
|
|
"wp-cli/wp-cli": "dev-master"
|
|
},
|
|
"require-dev": {
|
|
"wp-cli/extension-command": "^1.2 || ^2",
|
|
"wp-cli/wp-cli-tests": "^2.1"
|
|
},
|
|
"config": {
|
|
"process-timeout": 7200,
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.x-dev"
|
|
},
|
|
"bundled": true,
|
|
"commands": [
|
|
"scaffold",
|
|
"scaffold underscores",
|
|
"scaffold block",
|
|
"scaffold child-theme",
|
|
"scaffold plugin",
|
|
"scaffold plugin-tests",
|
|
"scaffold post-type",
|
|
"scaffold taxonomy",
|
|
"scaffold theme-tests"
|
|
]
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"": "src/"
|
|
},
|
|
"files": [
|
|
"scaffold-command.php"
|
|
]
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"behat": "run-behat-tests",
|
|
"behat-rerun": "rerun-behat-tests",
|
|
"lint": "run-linter-tests",
|
|
"phpcs": "run-phpcs-tests",
|
|
"phpunit": "run-php-unit-tests",
|
|
"prepare-tests": "install-package-tests",
|
|
"test": [
|
|
"@lint",
|
|
"@phpcs",
|
|
"@phpunit",
|
|
"@behat"
|
|
]
|
|
},
|
|
"support": {
|
|
"issues": "https://github.com/wp-cli/scaffold-command/issues"
|
|
}
|
|
}
|