From 70c5acf3b83f9053dc1acb5403a37ed2cf26a975 Mon Sep 17 00:00:00 2001 From: Pushpak Chhajed Date: Tue, 4 Nov 2025 21:38:48 +0530 Subject: [PATCH] drift:v12.10.0 Sync from base tag v12.10.0 --- .env.example | 2 +- config/queue.php | 6 +++++- config/services.php | 10 +++++----- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.env.example b/.env.example index 5ef3615ec..13b2ae218 100644 --- a/.env.example +++ b/.env.example @@ -11,7 +11,7 @@ APP_FAKER_LOCALE=en_US APP_MAINTENANCE_DRIVER=file # APP_MAINTENANCE_STORE=database -PHP_CLI_SERVER_WORKERS=4 +# PHP_CLI_SERVER_WORKERS=4 BCRYPT_ROUNDS=12 diff --git a/config/queue.php b/config/queue.php index 9d5e58959..79c2c0a23 100644 --- a/config/queue.php +++ b/config/queue.php @@ -25,7 +25,7 @@ | each backend supported by Laravel. You're also free to add more. | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", - | "deferred", "failover", "null" + | "deferred", "background", "failover", "null" | */ @@ -77,6 +77,10 @@ 'driver' => 'deferred', ], + 'background' => [ + 'driver' => 'background', + ], + 'failover' => [ 'driver' => 'failover', 'connections' => [ diff --git a/config/services.php b/config/services.php index cdb08d0af..566fc7fbe 100644 --- a/config/services.php +++ b/config/services.php @@ -15,7 +15,11 @@ */ 'postmark' => [ - 'token' => env('POSTMARK_TOKEN'), + 'key' => env('POSTMARK_API_KEY'), + ], + + 'resend' => [ + 'key' => env('RESEND_API_KEY'), ], 'ses' => [ @@ -24,10 +28,6 @@ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], - 'resend' => [ - 'key' => env('RESEND_KEY'), - ], - 'slack' => [ 'notifications' => [ 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),