You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($synchronizer->synchronize($lockData['packages'] ?? []) || $synchronizer->synchronize($lockData['packages-dev'] ?? [])) {
599
599
$this->io->writeError('<info>Synchronizing package.json with PHP packages</>');
600
600
$this->io->writeError('<warning>Don\'t forget to run npm install --force or yarn install --force to refresh your JavaScript dependencies!</>');
601
601
$this->io->writeError('');
@@ -774,8 +774,8 @@ public function updateAutoloadFile()
774
774
file_put_contents($autoloadFile, <<<EOPHP
775
775
<?php
776
776
777
-
if (\PHP_VERSION_ID < $version) {
778
-
echo sprintf("Fatal Error: composer.lock was created for PHP version $platform or higher but the current PHP version is %d.%d.%d.\\n", PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION);
777
+
if (PHP_VERSION_ID < $version) {
778
+
echo sprintf("Fatal Error: composer.lock was created for PHP version $platform or higher but the current PHP version is %d.%d.%s.\\n", PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION);
0 commit comments