Skip to content

Commit

Permalink
Add full stop to all command descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
svenluijten committed Jan 11, 2017
1 parent b1fee30 commit b4a77e1
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/Composer/Command/AboutCommand.php
Expand Up @@ -24,7 +24,7 @@ protected function configure()
{
$this
->setName('about')
->setDescription('Short information about Composer')
->setDescription('Short information about Composer.')
->setHelp(<<<EOT
<info>php composer.phar about</info>
EOT
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/ArchiveCommand.php
Expand Up @@ -37,7 +37,7 @@ protected function configure()
{
$this
->setName('archive')
->setDescription('Create an archive of this composer package')
->setDescription('Create an archive of this composer package.')
->setDefinition(array(
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'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/ConfigCommand.php
Expand Up @@ -63,7 +63,7 @@ protected function configure()
{
$this
->setName('config')
->setDescription('Set config options')
->setDescription('Set config options.')
->setDefinition(array(
new InputOption('global', 'g', InputOption::VALUE_NONE, 'Apply command to the global config file'),
new InputOption('editor', 'e', InputOption::VALUE_NONE, 'Open editor'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/DependsCommand.php
Expand Up @@ -30,7 +30,7 @@ protected function configure()
$this
->setName('depends')
->setAliases(array('why'))
->setDescription('Shows which packages cause the given package to be installed')
->setDescription('Shows which packages cause the given package to be installed.')
->setHelp(<<<EOT
Displays detailed information about where a package is referenced.
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/DumpAutoloadCommand.php
Expand Up @@ -28,7 +28,7 @@ protected function configure()
$this
->setName('dump-autoload')
->setAliases(array('dumpautoload'))
->setDescription('Dumps the autoloader')
->setDescription('Dumps the autoloader.')
->setDefinition(array(
new InputOption('no-scripts', null, InputOption::VALUE_NONE, 'Skips the execution of all scripts defined in composer.json file.'),
new InputOption('optimize', 'o', InputOption::VALUE_NONE, 'Optimizes PSR0 and PSR4 packages to be loaded with classmaps too, good for production.'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/ExecCommand.php
Expand Up @@ -26,7 +26,7 @@ protected function configure()
{
$this
->setName('exec')
->setDescription('Execute a vendored binary/script')
->setDescription('Execute a vendored binary/script.')
->setDefinition(array(
new InputOption('list', 'l', InputOption::VALUE_NONE),
new InputArgument('binary', InputArgument::OPTIONAL, 'The binary to run, e.g. phpunit'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/LicensesCommand.php
Expand Up @@ -31,7 +31,7 @@ protected function configure()
{
$this
->setName('licenses')
->setDescription('Show information about licenses of dependencies')
->setDescription('Show information about licenses of dependencies.')
->setDefinition(array(
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.'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/ProhibitsCommand.php
Expand Up @@ -30,7 +30,7 @@ protected function configure()
$this
->setName('prohibits')
->setAliases(array('why-not'))
->setDescription('Shows which packages prevent the given package from being installed')
->setDescription('Shows which packages prevent the given package from being installed.')
->setHelp(<<<EOT
Displays detailed information about why a package cannot be installed.
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/RemoveCommand.php
Expand Up @@ -33,7 +33,7 @@ protected function configure()
{
$this
->setName('remove')
->setDescription('Removes a package from the require or require-dev')
->setDescription('Removes a package from the require or require-dev.')
->setDefinition(array(
new InputArgument('packages', InputArgument::IS_ARRAY, 'Packages that should be removed.'),
new InputOption('dev', null, InputOption::VALUE_NONE, 'Removes a package from the require-dev section.'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/RequireCommand.php
Expand Up @@ -36,7 +36,7 @@ protected function configure()
{
$this
->setName('require')
->setDescription('Adds required packages to your composer.json and installs them')
->setDescription('Adds required packages to your composer.json and installs them.')
->setDefinition(array(
new InputArgument('packages', InputArgument::IS_ARRAY | InputArgument::OPTIONAL, 'Required package name optionally including a version constraint, e.g. foo/bar or foo/bar:1.0.0 or foo/bar=1.0.0 or "foo/bar 1.0.0"'),
new InputOption('dev', null, InputOption::VALUE_NONE, 'Add requirement to require-dev.'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/SearchCommand.php
Expand Up @@ -38,7 +38,7 @@ protected function configure()
{
$this
->setName('search')
->setDescription('Search for packages')
->setDescription('Search for packages.')
->setDefinition(array(
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'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/ShowCommand.php
Expand Up @@ -57,7 +57,7 @@ protected function configure()
$this
->setName('show')
->setAliases(array('info'))
->setDescription('Show information about packages')
->setDescription('Show information about packages.')
->setDefinition(array(
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'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/StatusCommand.php
Expand Up @@ -41,7 +41,7 @@ protected function configure()
{
$this
->setName('status')
->setDescription('Show a list of locally modified packages')
->setDescription('Show a list of locally modified packages.')
->setDefinition(array(
new InputOption('verbose', 'v|vv|vvv', InputOption::VALUE_NONE, 'Show modified files for each directory that contains changes.'),
))
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/SuggestsCommand.php
Expand Up @@ -24,7 +24,7 @@ protected function configure()
{
$this
->setName('suggests')
->setDescription('Show package suggestions')
->setDescription('Show package suggestions.')
->setDefinition(array(
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'),
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Command/ValidateCommand.php
Expand Up @@ -37,7 +37,7 @@ protected function configure()
{
$this
->setName('validate')
->setDescription('Validates a composer.json and composer.lock')
->setDescription('Validates a composer.json and composer.lock.')
->setDefinition(array(
new InputOption('no-check-all', null, InputOption::VALUE_NONE, 'Do not make a complete validation'),
new InputOption('no-check-lock', null, InputOption::VALUE_NONE, 'Do not check if lock file is up to date'),
Expand Down

0 comments on commit b4a77e1

Please sign in to comment.