mirror of
https://ghproxy.net/https://github.com/wp-cli/wp-cli-bundle.git
synced 2026-03-04 15:20:31 +08:00
* Update to wp-cli-tests v4 (which requires WPCS v3) * Fix all autofixable CS issues * Update `wp-cli/wp-cli-tests` --------- Co-authored-by: Pascal Birchler <pascalb@google.com>
36 lines
769 B
PHP
36 lines
769 B
PHP
<?php
|
|
|
|
return [
|
|
'output' => [
|
|
'runtime' => '=<path>',
|
|
'file' => '<path>',
|
|
'desc' => 'Path to output file',
|
|
],
|
|
|
|
'version' => [
|
|
'runtime' => '=<version>',
|
|
'file' => '<version>',
|
|
'desc' => 'New package version',
|
|
],
|
|
|
|
'store-version' => [
|
|
'runtime' => '',
|
|
'file' => '<bool>',
|
|
'default' => false,
|
|
'desc' => 'If true the contents of ./VERSION will be set to the value passed to --version',
|
|
],
|
|
|
|
'quiet' => [
|
|
'runtime' => '',
|
|
'file' => '<bool>',
|
|
'default' => false,
|
|
'desc' => 'Suppress informational messages',
|
|
],
|
|
|
|
'build' => [
|
|
'runtime' => '=<cli>',
|
|
'file' => '<cli>',
|
|
'default' => '',
|
|
'desc' => 'Create a minimum test build "cli", that only supports cli commands',
|
|
],
|
|
];
|