Browse Source

Force remove command to have at least one package name passed, refs #6338

Jordi Boggiano 8 years ago
parent
commit
890baa2f89
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Composer/Command/RemoveCommand.php

+ 1 - 1
src/Composer/Command/RemoveCommand.php

@@ -35,7 +35,7 @@ class RemoveCommand extends BaseCommand
             ->setName('remove')
             ->setDescription('Removes a package from the require or require-dev.')
             ->setDefinition(array(
-                new InputArgument('packages', InputArgument::IS_ARRAY, 'Packages that should be removed.'),
+                new InputArgument('packages', InputArgument::IS_ARRAY | InputArgument::REQUIRED, 'Packages that should be removed.'),
                 new InputOption('dev', null, InputOption::VALUE_NONE, 'Removes a package from the require-dev section.'),
                 new InputOption('no-progress', null, InputOption::VALUE_NONE, 'Do not output download progress.'),
                 new InputOption('no-update', null, InputOption::VALUE_NONE, 'Disables the automatic update of the dependencies.'),