export-command/composer.json
Wojciech Smoliński 157cb23fa3 add scripts
2018-08-10 19:09:50 +02:00

58 lines
1.3 KiB
JSON

{
"name": "wp-cli/profile-command",
"type": "wp-cli-package",
"description": "Quickly identify what's slow with WordPress.",
"homepage": "https://runcommand.io/wp/profile/",
"license": "MIT",
"authors": [],
"require": {
"php": ">=5.4",
"wp-cli/wp-cli": "2"
},
"require-dev": {
"behat/behat": "~2.5",
"wp-cli/wp-cli-tests": "2"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"commands": [
"profile stage",
"profile hook",
"profile eval",
"profile eval-file"
],
"readme": {
"sections": [
"Overview",
"Using",
"Installing",
"Contributing"
],
"overview": {
"post": "bin/readme/overview-body.md"
}
}
},
"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"
]
},
"autoload": {
"files": [
"command.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}