AbingPj
AbingPj

Reputation: 659

Laravel 5.5 to Laravel 6.0

I want to upgrade the version our the laravel project from 5.5.46 to 6.* It is possible to upgrade it? also the php version is still 7.0,.. how it upgrade it to php 7.4? thanks,. Anyone have experience of this and can hep me?

Upvotes: 0

Views: 222

Answers (2)

Kamal Maisuriya
Kamal Maisuriya

Reputation: 39

Upgrade the Laravel version need to take care of following things :

Please review the upgrade guide docs: https://laravel.com/docs/5.5/upgrade

For Compare the version code
https://github.com/laravel/laravel/compare/5.7...5.8

Compare your laravel version with new desired version for double sure. All thigs are working properly.

You can check and switch the php version which you want for double sure. How can I easily switch between PHP versions on Mac OSX?

If you have phpunit test case then run that test case for double sure. if something is breaking then you align and all test case pass.

Cheers you are on new php and new laravel version.

Upvotes: 1

Jonnathan Carrasco
Jonnathan Carrasco

Reputation: 166

You should upgrade step by step if you want everything gonna be ok, first since 5.5 > 5.6, then, upgrade 5.6 > 5.7. Some updates have a high impacts changes. Here is the official guide to upgrade your App:

https://laravel.com/docs/5.5/upgrade

Upvotes: 4

Related Questions