@fsdolphin Composer caches dependencies on a system-level basis. If you want the latest version, you can either specify the --prefer-source option when creating your project, or run composer update after you’ve created your project to check you have the most up-to-date dependencies.
Understanding what version of Laravel gets installed when version is not specified
Hi,
I have done a few installations for testing purposes and I noticed that I'm getting version 5.0.16, but when I go to Github the stable version is 5.0.32.
This is how I normally install Laravel. I start by navigating to my main development folder and installing it though composer as follow.
sudo composer create-project laravel/laravel projectName
I thought that when you don't specify the version you would get the latest stable version.
Why is that I'm not getting 5.0.32?
This is how I checked the version.
php artisan --version
Laravel Framework version 5.0.16
Side Notes:
I would to sworn that I got version 5.1 in one of my installations, but I'm not 100% sure since I accidentally deleted that installation and I couldn't verify that, but I'm almost positive that I saw 5.1 when I checked the version. What I noticed in this installation is that there was no HomeController.php nor WelcomeController.php in the Controllers folder so, I thought it was one of the changes in 5.1 but I don't think it is even released yet, right? I have been doing some new installations and now I get 5.0.16 every time which it now contains the HomeController.php and the WelcomeController.php.
Am I dreaming about Laravel 5.1? Is it even released? If yes, does it contain the HomeController.php and the WelcomeController.php?
Thanks a lot.
Please or to participate in this conversation.