Skip to content

Commit 4ec61d3

Browse files
authored
drift:v12.10.0 (#226)
Sync from base tag v12.10.0
1 parent 88cae66 commit 4ec61d3

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
*/
1616

1717
'postmark' => [
18-
'token' => env('POSTMARK_TOKEN'),
18+
'key' => env('POSTMARK_API_KEY'),
1919
],
2020

2121
'resend' => [
22-
'key' => env('RESEND_KEY'),
22+
'key' => env('RESEND_API_KEY'),
2323
],
2424

2525
'ses' => [

0 commit comments

Comments
 (0)