Browse Source

Merge pull request #2894 from naderman/update-no-dev

Add an --update-no-dev option to the require command
Nils Adermann 11 years ago
parent
commit
e93eeca13a
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/Composer/Command/RequireCommand.php

+ 3 - 1
src/Composer/Command/RequireCommand.php

@@ -42,6 +42,7 @@ class RequireCommand extends InitCommand
                 new InputOption('prefer-dist', null, InputOption::VALUE_NONE, 'Forces installation from package dist even for dev versions.'),
                 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.'),
+                new InputOption('update-no-dev', null, InputOption::VALUE_NONE, 'Run the dependency update with the --no-dev option.'),
                 new InputOption('update-with-dependencies', null, InputOption::VALUE_NONE, 'Allows inherited dependencies to be updated with explicit dependencies.'),
             ))
             ->setHelp(<<<EOT
@@ -109,6 +110,7 @@ EOT
         if ($input->getOption('no-update')) {
             return 0;
         }
+        $updateDevMode = $input->getOption('update-no-dev') ? false : true;
 
         // Update packages
         $composer = $this->getComposer();
@@ -124,7 +126,7 @@ EOT
             ->setVerbose($input->getOption('verbose'))
             ->setPreferSource($input->getOption('prefer-source'))
             ->setPreferDist($input->getOption('prefer-dist'))
-            ->setDevMode(true)
+            ->setDevMode($updateDevMode)
             ->setUpdate(true)
             ->setUpdateWhitelist(array_keys($requirements))
             ->setWhitelistDependencies($input->getOption('update-with-dependencies'));