scaffold-command/composer.json
2020-06-04 19:37:58 +02:00

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"
}
}