SpaceDogCS
SpaceDogCS

Reputation: 2978

Laravel 5.6.3 working in PHP 7.0

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

Answers (1)

Steve Ruben
Steve Ruben

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

Related Questions