-
Notifications
You must be signed in to change notification settings - Fork 47
Laravel 12.x Shift #300
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 12.x Shift #300
Conversation
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
In an effort to make upgrading the constantly changing config files easier, Shift defaulted them and merged your true customizations - where ENV variables may not be used.
ℹ️ Starting with Laravel 10, the Shift streamlined your language files by removing options that matched the Laravel defaults and preserving your customizations. If you wish to keep the full set of language, Shift recommends running |
You should review this commit for additional customizations or opportunities to use new |
ℹ️ Shift detected customized options within your configuration files which may be set with an LOG_STACK=single,flare
MAIL_HOST=smtp.mailgun.org
MAIL_MAILER=smtp
MAIL_PORT=587 Note: some of these may simply be values which changed between Laravel versions. You may ignore any |
1 similar comment
ℹ️ Shift detected customized options within your configuration files which may be set with an LOG_STACK=single,flare
MAIL_HOST=smtp.mailgun.org
MAIL_MAILER=smtp
MAIL_PORT=587 Note: some of these may simply be values which changed between Laravel versions. You may ignore any |
|
Shift detected additional references to the
|
ℹ️ Laravel added a Shift has added this script, as well as the necessary packages. Once you run |
ℹ️ In a minor release of Laravel 11, the Shift added the |
ℹ️ Starting with Laravel 11, |
ℹ️ Shift updated your dependencies for Laravel 12. While many of the popular packages are reviewed, you may have to update additional packages in order for your application to be compatible with Laravel 12. Watch dealing with dependencies for tips on handling any Composer issues. The following dependencies were not updated by Shift and may be incompatible. If Composer lists one of these packages as a problem, you should check for a newer version. |
ℹ️ Laravel 9 adopted anonymous migrations. Shift automated this change to align with modern Laravel conventions and avoid naming migrations. |
ℹ️ Starting with Laravel 10, PHP type hints were added within classes included in a Laravel application. In an effort to modernize your code, Shift automated this change where Laravel strictly specifies a type. If you prefer not to type hint your code you may revert this commit by running: |
ℹ️ If you are using the Laravel installer CLI tool to create new Laravel applications with You may update your installer by running: composer global require laravel/installer |
'cover' => ['required', 'image:allow_svg'],
'avatar' => ['required', File::image(allowSvg: true)], |
🎉 Congratulations, you're now running the latest version of Laravel! Next, you may optionally run the following Shifts to ensure your application is fully upgraded, adopts the latest Laravel conventions, and easier to maintain in the future:
You may also use the Shift Workbench to automate common tasks for maintaining your Laravel application. |
This pull request includes the changes for upgrading to Laravel 12.x. Feel free to commit any additional changes to the
shift-158384
branch.Before merging, you need to:
shift-158384
branchcomposer update
(if the scripts fail, try with--no-scripts
)If you get stuck, never hesitate to email support. If you need more help with your upgrade, check out the Human Shifts.