Is it possible to downgrade php version in laravel 8

Viewed 29

Currently, I'm using laravel 8 and I want to downgrade the php version from php 8 to 5. If possible please provide me with a way to do that.

1 Answers

Laravel 8 requires PHP 7.3+ or above installed on your system. So you can not downgrade to php version 5. Moreover, under the hood, Laravel needs PHP version minimum 7.3+ to run.

Related