Skip to content

Commit 2862aa3

Browse files
Merge pull request #203 from laravel/sync-from-base-v12.10.0-20251104-213822
Sync from base: drift:v12.10.0
2 parents 3c53d6b + 70c5acf commit 2862aa3

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ APP_FAKER_LOCALE=en_US
1111
APP_MAINTENANCE_DRIVER=file
1212
# APP_MAINTENANCE_STORE=database
1313

14-
PHP_CLI_SERVER_WORKERS=4
14+
# PHP_CLI_SERVER_WORKERS=4
1515

1616
BCRYPT_ROUNDS=12
1717

config/queue.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
| each backend supported by Laravel. You're also free to add more.
2626
|
2727
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis",
28-
| "deferred", "failover", "null"
28+
| "deferred", "background", "failover", "null"
2929
|
3030
*/
3131

@@ -77,6 +77,10 @@
7777
'driver' => 'deferred',
7878
],
7979

80+
'background' => [
81+
'driver' => 'background',
82+
],
83+
8084
'failover' => [
8185
'driver' => 'failover',
8286
'connections' => [

config/services.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
*/
1616

1717
'postmark' => [
18-
'token' => env('POSTMARK_TOKEN'),
18+
'key' => env('POSTMARK_API_KEY'),
19+
],
20+
21+
'resend' => [
22+
'key' => env('RESEND_API_KEY'),
1923
],
2024

2125
'ses' => [
@@ -24,10 +28,6 @@
2428
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
2529
],
2630

27-
'resend' => [
28-
'key' => env('RESEND_KEY'),
29-
],
30-
3131
'slack' => [
3232
'notifications' => [
3333
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),

0 commit comments

Comments
 (0)