How to Install Any Laravel Version

Arman Rahman - Jun 30 '23 - - Dev Community

You just need to Install Composer first. After that you need to run this specific command with your required version -

$ composer create-project --prefer-dist laravel/laravel YourProjectName "5.3.*"
Enter fullscreen mode Exit fullscreen mode

You can choose those versions-

4.2.*
5.0.*
5.1.*
5.2.*
5.3.*
5.4.*
5.5.*
5.6.*
5.7.*
5.8.*
6.*
7.*
8.*
9.*
10.*

. . . . . . . . . . . . . . . . . . . . . . . .