How do I downgrade my php version from 7.3.4 to 7.0.0 in larvel 5.4.36?

Viewed 21848

I want to downgrade the version of php from 7.3.4 to 7.0.0 in my laravel project. Please suggest how to do it?

I am using artisan serve.

I am using laravel version 5.4.36

2 Answers

Try lower the Laravel version. Change the value inside the composer.json to Laravel 5.x, delete the vendor folder and run composer install.

Related