-
Notifications
You must be signed in to change notification settings - Fork 14
Laravel 10.x Shift #4
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
base: release
Are you sure you want to change the base?
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.
|
You should review this commit for additional customizations or opportunities to use new |
|
ℹ️ Shift updated your dependencies for Laravel 10. 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 10. Watch dealing with dependencies for tips on handling any Composer issues. |
|
ℹ️ Laravel renamed the |
|
ℹ️ Laravel 10 added PHP type hints to all user-land code included in a new Laravel application. In an effort to modernize your code, Shift added type hints to any method which is used by Laravel, as well as any method which had types defined in its PHP DocBlock. |
|
ℹ️ Now with type hints in your code, defining types within PHP DocBlocks is redundant. Laravel has removed all of the |
|
ℹ️ Shift understand developers have different preferences when it comes to type hints. All of Shift's automation is done in nice, atomic commits. This makes it easier to undo any of the changes Shift makes. If you wish to undo any of these changes, you may first revert the DocBlock changes by running |
|
ℹ️ All of the underlying Symfony components used by Laravel have been upgraded to Symfony 6.2. Shift detected references to Symfony classes within your application. You should review the Symfony change log for any additional changes. |
|
ℹ️ Laravel began using Vite to build frontend assets in Laravel 9.19. While you may continue to use Laravel Mix, it is no longer the default. If you wish to modernize your application to use Vite, you may run the Vite Converter for free. |
|
|
|
🎉 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 and PHP applications. |
| 'port' => env('PUSHER_PORT', 443), | ||
| 'scheme' => env('PUSHER_SCHEME', 'https'), | ||
| 'encrypted' => true, | ||
| 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
de wär das apa wieder ver d ENV iu?
| 'default' => [ | ||
| 'url' => env('REDIS_URL'), | ||
| 'host' => env('REDIS_HOST', '127.0.0.1'), | ||
| 'username' => env('REDIS_USERNAME'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ENV?
| 'username' => env('MAIL_USERNAME'), | ||
| 'password' => env('MAIL_PASSWORD'), | ||
| 'timeout' => null, | ||
| 'local_domain' => env('MAIL_EHLO_DOMAIN'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ENV?
| 'sendmail' => [ | ||
| 'transport' => 'sendmail', | ||
| 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -t -i'), | ||
| 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ENV?
This pull request includes the changes for upgrading to Laravel 10.x. Feel free to commit any additional changes to the
shift-81808branch.Before merging, you need to:
shift-81808branchcomposer update(if the scripts fail, add--no-scripts)If you need help with your upgrade, check out the Human Shifts. You may also join the Shifty Coders Slack workspace to level-up your Laravel skills.