Skip to content
Advertisement

Unable to upgrade laravel framework from 5.5 to 5.6 or 5.7 on an existing project

I am trying to upgrade my laravel project framework to 5.7 from 5.5 but unable to do it ..

when i change composerjson requres as laravel upgrading documentation and hit composer update on project terminal its output me these:

JavaScript

and this is my composer.json

JavaScript

tried many ways available on internet but still hanging on the problem

just want to upgrade the project laravel for new features ..

Anybody got any idea ? how can i solved this and go ahead with new laravel ?

thanks in advance.

Advertisement

Answer

Best way to upgrade laravel framework for your projects in following steps

  1. Take backup of your composer.json file
  2. remove all third party packages from composer.json file or take latest composer.json from laravel git repository https://github.com/laravel/laravel
  3. comment all third party packages service providers from app.php file (for version below Laravel 5.5)
  4. Now run composer update command in terminal
  5. Once Laravel update done. Now install all your third party packages again and enable third party service provider on app.php file.

update: if you are trying to upgrade laravel version 5.5 and up skip step 3. also for laravel 5.5 and up no need to enable third party package service providers in step 5.

Happy updating laravel for your projects.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement