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 cdb08d0a..566fc7fb 100644 --- a/config/services.php +++ b/config/services.php @@ -15,7 +15,11 @@ */ 'postmark' => [ - 'token' => env('POSTMARK_TOKEN'), + 'key' => env('POSTMARK_API_KEY'), + ], + + 'resend' => [ + 'key' => env('RESEND_API_KEY'), ], 'ses' => [ @@ -24,10 +28,6 @@ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], - 'resend' => [ - 'key' => env('RESEND_KEY'), - ], - 'slack' => [ 'notifications' => [ 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),