Doubt about the laravel version:

0

When I started the installation of laravel, I used the command: "composer global require laravel / installer" and the installation of the last version is running normal. these forms did not work:

1 - composer create-project -prefer-dist laravel / laravel project-name 5.1. *

2 - laravel / laravel project-name 5.1. *

3 - laravel project-name 5.1. *

NOTE: do I have to reinstall laravel ?: if so, how to remove the previous version

    
asked by anonymous 08.12.2016 / 01:50

1 answer

0

To install a particular version follow the documentation and use composer as the command line just below:

php composer create-project laravel/laravel nome_do_projeto "5.1.*"

As described in your official documentation , forcing the installation of the post-tag" title="show questions tagged with 'laravel'"> laravel 5.1 .

    
08.12.2016 / 13:17