From 76396a056d552b8a34077f151775037ac44b431a Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Tue, 4 Nov 2025 16:00:21 +0100 Subject: [PATCH] Add background driver (#6699) * Add background driver Adds settings for PR https://github.com/laravel/framework/pull/57648 * Update queue.php --------- Co-authored-by: Taylor Otwell --- config/queue.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 @@ return [ | 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 @@ return [ 'driver' => 'deferred', ], + 'background' => [ + 'driver' => 'background', + ], + 'failover' => [ 'driver' => 'failover', 'connections' => [