Marek123
Marek123

Reputation: 1211

Laravel 5 - Upgrade to 5.3

I had a project on Laravel 5.1 and now I upgraded to 5.3.
All seems to work fine but I'm missing some "essentials" that were in the upgrade/change notes of 5.3 as the new routes structure.

It seems that my upgrade did not create those folders and as I tried to create them manually and also delete the old routes.php in App/Http, it didn't worked as expected.
It doesn't work at all....

How can I create the new folder structure in Laravel 5.3 as I need it for other plugins/extensions? Do I need to modify/create more than just the folder structure?

Thanks!

Upvotes: 1

Views: 424

Answers (1)

Robo Robok
Robo Robok

Reputation: 22815

You need to do it manually. Laravel Framework and Laravel project base are two separate repositories. Updating your composer.json to use newest Laravel framework will only update its package in the /vendor directory.

Upvotes: 3

Related Questions