mirror of
https://gh.wpcy.net/https://github.com/wp-cli/scaffold-command.git
synced 2026-04-30 06:17:00 +08:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "wp-cli/scaffold-command",
|
|
"description": "Generate code for post types, taxonomies, plugins, child themes, etc.",
|
|
"type": "wp-cli-package",
|
|
"homepage": "https://github.com/wp-cli/scaffold-command",
|
|
"support": {
|
|
"issues": "https://github.com/wp-cli/scaffold-command/issues"
|
|
},
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Daniel Bachhuber",
|
|
"email": "daniel@runcommand.io",
|
|
"homepage": "https://runcommand.io"
|
|
}
|
|
],
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"autoload": {
|
|
"psr-4": {
|
|
"": "src/"
|
|
},
|
|
"files": [
|
|
"scaffold-command.php"
|
|
]
|
|
},
|
|
"require": {},
|
|
"require-dev": {
|
|
"behat/behat": "~2.5",
|
|
"wp-cli/wp-cli": "*"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.x-dev"
|
|
},
|
|
"commands": [
|
|
"scaffold",
|
|
"scaffold _s",
|
|
"scaffold block",
|
|
"scaffold child-theme",
|
|
"scaffold plugin",
|
|
"scaffold plugin-tests",
|
|
"scaffold post-type",
|
|
"scaffold taxonomy",
|
|
"scaffold theme-tests"
|
|
],
|
|
"bundled": true
|
|
}
|
|
}
|