From c9cf57a00c76c58afec25a822846f0798661e372 Mon Sep 17 00:00:00 2001 From: Benedikt Franke Date: Wed, 4 Mar 2020 15:04:39 +0100 Subject: [PATCH 1/4] Add serialize option to array cache config (#5244) This documents the new configuration option from https://github.com/laravel/framework/pull/31295 --- config/cache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/cache.php b/config/cache.php index 46751e62..4f41fdf9 100644 --- a/config/cache.php +++ b/config/cache.php @@ -39,6 +39,7 @@ 'array' => [ 'driver' => 'array', + 'serialize' => false, ], 'database' => [ From efcf74f422b381a69da8f673061eb94487e6f557 Mon Sep 17 00:00:00 2001 From: Mark van den Broek Date: Wed, 4 Mar 2020 15:05:25 +0100 Subject: [PATCH 2/4] [7.x] Add Mailgun and Postmark mailer (#5243) * Add Mailgun and Postmark mailer * Formatting * Update mail.php Co-authored-by: Taylor Otwell --- config/mail.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/mail.php b/config/mail.php index 67fb3409..cfef410f 100644 --- a/config/mail.php +++ b/config/mail.php @@ -47,6 +47,14 @@ 'transport' => 'ses', ], + 'mailgun' => [ + 'transport' => 'mailgun', + ], + + 'postmark' => [ + 'transport' => 'postmark', + ], + 'sendmail' => [ 'transport' => 'sendmail', 'path' => '/usr/sbin/sendmail -bs', From 3aa22403c7d865049a735c51fadf60add498840e Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 4 Mar 2020 16:45:31 -0600 Subject: [PATCH 3/4] remove empty line from phpunit.xml (#5245) I'm not sure if there's a style rule for this, but it seems very out of place to be the only empty line in the whole file. --- phpunit.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/phpunit.xml b/phpunit.xml index 383f71ef..5cf0875e 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -7,7 +7,6 @@ ./tests/Unit - ./tests/Feature From 5ddbfb845439fcd5a46c23530b8774421a931760 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Fri, 6 Mar 2020 11:47:59 +0000 Subject: [PATCH 4/4] Ensure that app.debug is a bool --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index c9960cde..9e5b36cf 100644 --- a/config/app.php +++ b/config/app.php @@ -39,7 +39,7 @@ | */ - 'debug' => env('APP_DEBUG', false), + 'debug' => (bool) env('APP_DEBUG', false), /* |--------------------------------------------------------------------------