Reputation: 4074
I have an application built on laravel 5.2 but there are some new changes made to the official repository. Whats the correct way of updating just the laravel core?
Upvotes: 1
Views: 514
Reputation: 163768
It's a bad idea to update core only. I'd recommend you to update Laravel core and vendor packages with composer update
command. It will update framework core and all vendor packages.
If you still want to update just core, I guess composer update laravel/laravel
command will do exactly that.
Upvotes: 2