config-command/utils/make-phar-spec.php
Alain Schlesser e68aeaf0e5
Update to WPCS v3 (#569)
* 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>
2023-08-30 09:19:33 -07:00

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',
],
];