From 4d3f6a29ca461f808f0963eeef4dce00bc1abaed Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Mon, 9 Mar 2020 15:08:30 +0800 Subject: [PATCH] accept upstream config files (close #144) --- config/app.php | 2 +- config/cache.php | 1 + config/queue.php | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index 206645e4..761cb3d3 100644 --- a/config/app.php +++ b/config/app.php @@ -51,7 +51,7 @@ return [ | */ - 'debug' => env('APP_DEBUG', false), + 'debug' => (bool) env('APP_DEBUG', false), /* |-------------------------------------------------------------------------- diff --git a/config/cache.php b/config/cache.php index b6fcf12e..34f171dd 100644 --- a/config/cache.php +++ b/config/cache.php @@ -39,6 +39,7 @@ return [ 'array' => [ 'driver' => 'array', + 'serialize' => false, ], 'database' => [ diff --git a/config/queue.php b/config/queue.php index 3a30d6c6..00b76d65 100644 --- a/config/queue.php +++ b/config/queue.php @@ -55,6 +55,7 @@ return [ 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 'queue' => env('SQS_QUEUE', 'your-queue-name'), + 'suffix' => env('SQS_SUFFIX'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ],