|
@@ -473,6 +473,9 @@ class Installer
|
|
|
} catch (SolverProblemsException $e) {
|
|
|
$this->io->writeError('<error>Your requirements could not be resolved to an installable set of packages.</error>', true, IOInterface::QUIET);
|
|
|
$this->io->writeError($e->getMessage());
|
|
|
+ if ($this->update && !$this->devMode) {
|
|
|
+ $this->io->writeError('<warning>Running update with --no-dev does not mean require-dev is ignored, it just means the packages will not be installed. If dev requirements are blocking the update you have to resolve those problems.</warning>', true, IOInterface::QUIET);
|
|
|
+ }
|
|
|
|
|
|
return array(max(1, $e->getCode()), array());
|
|
|
}
|