scaffold-command/composer.json
2025-07-04 10:45:54 +02:00

78 lines
2.1 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": {
"wp-cli/wp-cli": "^2.12"
},
"require-dev": {
"wp-cli/extension-command": "^1.2 || ^2",
"wp-cli/wp-cli-tests": "^5"
},
"config": {
"process-timeout": 7200,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"johnpbloch/wordpress-core-installer": true,
"phpstan/extension-installer": true
},
"lock": false
},
"extra": {
"branch-alias": {
"dev-main": "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": {
"classmap": [
"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",
"phpstan": "run-phpstan-tests",
"phpcbf": "run-phpcbf-cleanup",
"phpunit": "run-php-unit-tests",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpcs",
"@phpstan",
"@phpunit",
"@behat"
]
},
"support": {
"issues": "https://github.com/wp-cli/scaffold-command/issues"
}
}