-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Laravel 5.2 Shift #17
base: master
Are you sure you want to change the base?
Conversation
The Laravel framework adopts the PSR-2 coding style in version 5.1. Laravel apps *should* adopt this coding style as well. Read the [PSR-2 coding style guide][1] for more details and check out [PHPCS][2] to use as a code formatting tool. [1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md [2]: https://github.com/squizlabs/PHP_CodeSniffer
Laravel 5.2 adjusts the `Guard` object used within middleware. In addition, new `can` and `throttles` middleware were added.
Laravel 5.2 introduces a *Guard* object to the Authentication component. In doing so, the configuration options and default Middleware changed.
⚠ Laravel 5.2 adds Middleware Groups for convenience. Since this may affect your routes and controllers, I did not automate this upgrade. You should read about Middleware Groups to understand this change. When you are ready to upgrade to Middleware Groups, you should:
|
ℹ Laravel 5.2 changed the value of |
ℹ Laravel 5.2 updated the |
This pull request includes the changes for upgrading to Laravel 5.2. Feel free to commit any additional changes to the
laravel-5.2-shift
branch.Before merging, you should:
laravel-5.2-shift
branchcomposer update
(if the pre-commands fail, add--no-scripts
)If you would like more help with your upgrade, check out the new human services from Laravel Shift.