diff --git a/.env.example b/.env.example index 35db1ddf..c0660ea1 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 6182e4b9..6a90eb83 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' => [