From 0c112c4fc82fe6b47866512a325085d6b64be88c Mon Sep 17 00:00:00 2001 From: Pushpak Chhajed Date: Tue, 4 Nov 2025 21:37:09 +0530 Subject: [PATCH] drift:v12.10.0 Sync from base tag v12.10.0 --- .env.example | 2 +- config/queue.php | 6 +++++- config/services.php | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.env.example b/.env.example index 5ef3615e..13b2ae21 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 9d5e5895..79c2c0a2 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 c99360a2..566fc7fb 100644 --- a/config/services.php +++ b/config/services.php @@ -15,11 +15,11 @@ */ 'postmark' => [ - 'token' => env('POSTMARK_TOKEN'), + 'key' => env('POSTMARK_API_KEY'), ], 'resend' => [ - 'key' => env('RESEND_KEY'), + 'key' => env('RESEND_API_KEY'), ], 'ses' => [