File: //usr/local/wp/vendor/dreamhost/wpcli-reinstall-command/composer.json
{
"name": "dreamhost/wpcli-reinstall-command",
"description": "Reinstalls WordPress core, themes, and plugins.",
"type": "wp-cli-package",
"homepage": "https://git.dreamhost.com/dreamhost/wpcli-reinstall-command",
"license": "MIT",
"authors": [],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"": "src/"
},
"files": [ "command.php" ]
},
"require": {
"wp-cli/wp-cli": "^2"
},
"require-dev": {
"behat/behat": "~2.5",
"wp-cli/wp-cli-tests": "^2",
"wp-cli/extension-command": "^2",
"wp-cli/core-command": "^2",
"wp-cli/checksum-command": "^2"
},
"scripts": {
"lint": "run-linter-tests",
"phpcs": "run-phpcs-tests",
"phpunit": "run-php-unit-tests",
"behat": "run-behat-tests",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpcs",
"@phpunit",
"@behat"
]
},
"extra": {
"commands": [ "reinstall" ]
}
}