Update to laravel 11.1.1

This commit is contained in:
Kevin MacMartin 2024-06-10 16:15:14 -04:00
parent 75e8637421
commit 7e96da9186
10 changed files with 27 additions and 10 deletions

1
.gitignore vendored
View file

@ -3,6 +3,7 @@
.env .env
.env.backup .env.backup
.env.production .env.production
.phpactor.json
auth.json auth.json
npm-debug.log npm-debug.log
yarn-error.log yarn-error.log

View file

@ -1 +1 @@
58baff2c70144c7cd4c04eecb51fee5a24e873a8 ad38e564ac871505e2fa829004cc45848b8b85e5

View file

@ -9,7 +9,7 @@
"erusev/parsedown": "^1.7.4", "erusev/parsedown": "^1.7.4",
"guzzlehttp/guzzle": "^7.8", "guzzlehttp/guzzle": "^7.8",
"intervention/image-laravel": "^1.2", "intervention/image-laravel": "^1.2",
"laravel/framework": "^11.0", "laravel/framework": "^11.9",
"laravel/helpers": "^1.7", "laravel/helpers": "^1.7",
"laravel/sanctum": "^4.0", "laravel/sanctum": "^4.0",
"laravel/tinker": "^2.9", "laravel/tinker": "^2.9",
@ -23,7 +23,7 @@
"laravel/sail": "^1.26", "laravel/sail": "^1.26",
"mockery/mockery": "^1.6", "mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0", "nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0", "phpunit/phpunit": "^11.0.1",
"spatie/laravel-ignition": "^2.4" "spatie/laravel-ignition": "^2.4"
}, },
"autoload": { "autoload": {

View file

@ -26,7 +26,7 @@ return [
| well as their drivers. You may even define multiple stores for the | well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches. | same cache driver to group types of items stored in your caches.
| |
| Supported drivers: "apc", "array", "database", "file", "memcached", | Supported drivers: "array", "database", "file", "memcached",
| "redis", "dynamodb", "octane", "null" | "redis", "dynamodb", "octane", "null"
| |
*/ */

View file

@ -24,7 +24,7 @@ return [
| may even configure multiple disks for the same driver. Examples for | may even configure multiple disks for the same driver. Examples for
| most supported storage drivers are configured here for reference. | most supported storage drivers are configured here for reference.
| |
| Supported Drivers: "local", "ftp", "sftp", "s3" | Supported drivers: "local", "ftp", "sftp", "s3"
| |
*/ */

View file

@ -45,7 +45,7 @@ return [
| utilizes the Monolog PHP logging library, which includes a variety | utilizes the Monolog PHP logging library, which includes a variety
| of powerful log handlers and formatters that you're free to use. | of powerful log handlers and formatters that you're free to use.
| |
| Available Drivers: "single", "daily", "slack", "syslog", | Available drivers: "single", "daily", "slack", "syslog",
| "errorlog", "monolog", "custom", "stack" | "errorlog", "monolog", "custom", "stack"
| |
*/ */

View file

@ -30,7 +30,8 @@ return [
| your mailers below. You may also add additional mailers if needed. | your mailers below. You may also add additional mailers if needed.
| |
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
| "postmark", "log", "array", "failover", "roundrobin" | "postmark", "resend", "log", "array",
| "failover", "roundrobin"
| |
*/ */
@ -45,7 +46,7 @@ return [
'username' => env('MAIL_USERNAME'), 'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'), 'password' => env('MAIL_PASSWORD'),
'timeout' => null, 'timeout' => null,
'local_domain' => env('MAIL_EHLO_DOMAIN'), 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
], ],
'ses' => [ 'ses' => [
@ -60,6 +61,10 @@ return [
// ], // ],
], ],
'resend' => [
'transport' => 'resend',
],
'sendmail' => [ 'sendmail' => [
'transport' => 'sendmail', 'transport' => 'sendmail',
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
@ -82,6 +87,14 @@ return [
], ],
], ],
'roundrobin' => [
'transport' => 'roundrobin',
'mailers' => [
'ses',
'postmark',
],
],
], ],
/* /*

View file

@ -24,6 +24,10 @@ return [
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
], ],
'resend' => [
'key' => env('RESEND_KEY'),
],
'slack' => [ 'slack' => [
'notifications' => [ 'notifications' => [
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),

View file

@ -125,7 +125,6 @@ return [
| the framework. Typically, you should not need to change this value | the framework. Typically, you should not need to change this value
| since doing so does not grant a meaningful security improvement. | since doing so does not grant a meaningful security improvement.
| |
|
*/ */
'cookie' => env( 'cookie' => env(

View file

@ -21,7 +21,7 @@ A Hypothetical website template for bootstrapping new projects.
* Gsap * Gsap
* Gulp * Gulp
* Jquery * Jquery
* Laravel 11.0.5 * Laravel 11.1.1
* Sass * Sass
* Vue 3 (Optional) * Vue 3 (Optional)