How to install a specific laravel version using laravel installer

Hey there I using laravel installer version 4.0.3
I found some commands on stack overflow like
" laravel new blog --6.1" this was not work for me

Thank you

Looking at the output of laravel --help I don’t think there is a way to do that. You could however do it using composer:

composer create-project --prefer-dist laravel/laravel:^6.1 my-project
1 Like

Thank @rpkamp :innocent: :+1:

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.