Aligns the verb form of commands' description

main
Issei.M 7 years ago
parent b9309ae5a1
commit 0856dfa084

@ -24,7 +24,7 @@ class AboutCommand extends BaseCommand
{ {
$this $this
->setName('about') ->setName('about')
->setDescription('Short information about Composer.') ->setDescription('Shows the short information about Composer.')
->setHelp(<<<EOT ->setHelp(<<<EOT
<info>php composer.phar about</info> <info>php composer.phar about</info>
EOT EOT

@ -37,7 +37,7 @@ class ArchiveCommand extends BaseCommand
{ {
$this $this
->setName('archive') ->setName('archive')
->setDescription('Create an archive of this composer package.') ->setDescription('Creates an archive of this composer package.')
->setDefinition(array( ->setDefinition(array(
new InputArgument('package', InputArgument::OPTIONAL, 'The package to archive instead of the current project'), new InputArgument('package', InputArgument::OPTIONAL, 'The package to archive instead of the current project'),
new InputArgument('version', InputArgument::OPTIONAL, 'A version constraint to find the package to archive'), new InputArgument('version', InputArgument::OPTIONAL, 'A version constraint to find the package to archive'),

@ -63,7 +63,7 @@ class ConfigCommand extends BaseCommand
{ {
$this $this
->setName('config') ->setName('config')
->setDescription('Set config options.') ->setDescription('Sets config options.')
->setDefinition(array( ->setDefinition(array(
new InputOption('global', 'g', InputOption::VALUE_NONE, 'Apply command to the global config file'), new InputOption('global', 'g', InputOption::VALUE_NONE, 'Apply command to the global config file'),
new InputOption('editor', 'e', InputOption::VALUE_NONE, 'Open editor'), new InputOption('editor', 'e', InputOption::VALUE_NONE, 'Open editor'),

@ -59,7 +59,7 @@ class CreateProjectCommand extends BaseCommand
{ {
$this $this
->setName('create-project') ->setName('create-project')
->setDescription('Create new project from a package into given directory.') ->setDescription('Creates new project from a package into given directory.')
->setDefinition(array( ->setDefinition(array(
new InputArgument('package', InputArgument::OPTIONAL, 'Package name to be installed'), new InputArgument('package', InputArgument::OPTIONAL, 'Package name to be installed'),
new InputArgument('directory', InputArgument::OPTIONAL, 'Directory where the files should be created'), new InputArgument('directory', InputArgument::OPTIONAL, 'Directory where the files should be created'),

@ -26,7 +26,7 @@ class ExecCommand extends BaseCommand
{ {
$this $this
->setName('exec') ->setName('exec')
->setDescription('Execute a vendored binary/script.') ->setDescription('Executes a vendored binary/script.')
->setDefinition(array( ->setDefinition(array(
new InputOption('list', 'l', InputOption::VALUE_NONE), new InputOption('list', 'l', InputOption::VALUE_NONE),
new InputArgument('binary', InputArgument::OPTIONAL, 'The binary to run, e.g. phpunit'), new InputArgument('binary', InputArgument::OPTIONAL, 'The binary to run, e.g. phpunit'),

@ -31,7 +31,7 @@ class LicensesCommand extends BaseCommand
{ {
$this $this
->setName('licenses') ->setName('licenses')
->setDescription('Show information about licenses of dependencies.') ->setDescription('Shows information about licenses of dependencies.')
->setDefinition(array( ->setDefinition(array(
new InputOption('format', 'f', InputOption::VALUE_REQUIRED, 'Format of the output: text or json', 'text'), new InputOption('format', 'f', InputOption::VALUE_REQUIRED, 'Format of the output: text or json', 'text'),
new InputOption('no-dev', null, InputOption::VALUE_NONE, 'Disables search in require-dev packages.'), new InputOption('no-dev', null, InputOption::VALUE_NONE, 'Disables search in require-dev packages.'),

@ -47,7 +47,7 @@ class RunScriptCommand extends BaseCommand
{ {
$this $this
->setName('run-script') ->setName('run-script')
->setDescription('Run the scripts defined in composer.json.') ->setDescription('Runs the scripts defined in composer.json.')
->setDefinition(array( ->setDefinition(array(
new InputArgument('script', InputArgument::OPTIONAL, 'Script name to run.'), new InputArgument('script', InputArgument::OPTIONAL, 'Script name to run.'),
new InputArgument('args', InputArgument::IS_ARRAY | InputArgument::OPTIONAL, ''), new InputArgument('args', InputArgument::IS_ARRAY | InputArgument::OPTIONAL, ''),

@ -35,7 +35,7 @@ class ScriptAliasCommand extends BaseCommand
{ {
$this $this
->setName($this->script) ->setName($this->script)
->setDescription('Run the '.$this->script.' script as defined in composer.json.') ->setDescription('Runs the '.$this->script.' script as defined in composer.json.')
->setDefinition(array( ->setDefinition(array(
new InputOption('dev', null, InputOption::VALUE_NONE, 'Sets the dev mode.'), new InputOption('dev', null, InputOption::VALUE_NONE, 'Sets the dev mode.'),
new InputOption('no-dev', null, InputOption::VALUE_NONE, 'Disables the dev mode.'), new InputOption('no-dev', null, InputOption::VALUE_NONE, 'Disables the dev mode.'),

@ -38,7 +38,7 @@ class SearchCommand extends BaseCommand
{ {
$this $this
->setName('search') ->setName('search')
->setDescription('Search for packages.') ->setDescription('Searches for packages.')
->setDefinition(array( ->setDefinition(array(
new InputOption('only-name', 'N', InputOption::VALUE_NONE, 'Search only in name'), new InputOption('only-name', 'N', InputOption::VALUE_NONE, 'Search only in name'),
new InputOption('type', 't', InputOption::VALUE_REQUIRED, 'Search for a specific package type'), new InputOption('type', 't', InputOption::VALUE_REQUIRED, 'Search for a specific package type'),

@ -58,7 +58,7 @@ class ShowCommand extends BaseCommand
$this $this
->setName('show') ->setName('show')
->setAliases(array('info')) ->setAliases(array('info'))
->setDescription('Show information about packages.') ->setDescription('Shows information about packages.')
->setDefinition(array( ->setDefinition(array(
new InputArgument('package', InputArgument::OPTIONAL, 'Package to inspect. Or a name including a wildcard (*) to filter lists of packages instead.'), new InputArgument('package', InputArgument::OPTIONAL, 'Package to inspect. Or a name including a wildcard (*) to filter lists of packages instead.'),
new InputArgument('version', InputArgument::OPTIONAL, 'Version or version constraint to inspect'), new InputArgument('version', InputArgument::OPTIONAL, 'Version or version constraint to inspect'),

@ -40,7 +40,7 @@ class StatusCommand extends BaseCommand
{ {
$this $this
->setName('status') ->setName('status')
->setDescription('Show a list of locally modified packages.') ->setDescription('Shows a list of locally modified packages.')
->setDefinition(array( ->setDefinition(array(
new InputOption('verbose', 'v|vv|vvv', InputOption::VALUE_NONE, 'Show modified files for each directory that contains changes.'), new InputOption('verbose', 'v|vv|vvv', InputOption::VALUE_NONE, 'Show modified files for each directory that contains changes.'),
)) ))

@ -24,7 +24,7 @@ class SuggestsCommand extends BaseCommand
{ {
$this $this
->setName('suggests') ->setName('suggests')
->setDescription('Show package suggestions.') ->setDescription('Shows package suggestions.')
->setDefinition(array( ->setDefinition(array(
new InputOption('by-package', null, InputOption::VALUE_NONE, 'Groups output by suggesting package'), new InputOption('by-package', null, InputOption::VALUE_NONE, 'Groups output by suggesting package'),
new InputOption('by-suggestion', null, InputOption::VALUE_NONE, 'Groups output by suggested package'), new InputOption('by-suggestion', null, InputOption::VALUE_NONE, 'Groups output by suggested package'),

Loading…
Cancel
Save