Reputation: 2978
I just code an entire website in laravel 5.6.3 that needs at least PHP 7.1, but my server is limited to PHP 7.0.
Can I change the version of laravel without coding it all again?
Upvotes: 1
Views: 2398
Reputation: 1447
you can change your host or downgrade your Laravel project by just change the your composer.json
file with the desired version and use the supported dependency for that version.
Upvotes: 1