Explorar o código

Fix lock file out of sync warning, fixes #1307

Jordi Boggiano %!s(int64=12) %!d(string=hai) anos
pai
achega
c0e75e5d24
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/Composer/Installer.php

+ 1 - 1
src/Composer/Installer.php

@@ -292,7 +292,7 @@ class Installer
             $this->io->write('<info>Installing '.($devMode ? 'dev ': '').'dependencies from lock file</info>');
 
             if (!$this->locker->isFresh() && !$devMode) {
-                $this->io->write('<warning>Your lock file is out of sync with your composer.json, run "composer.phar update" to update dependencies</warning>');
+                $this->io->write('<warning>Warning: The lock file is not up to date with the latest changes in composer.json, you may be getting outdated dependencies, run update to update them.</warning>');
             }
 
             foreach ($lockedRepository->getPackages() as $package) {