Merge branch 'master' into develop

This commit is contained in:
Graham Campbell 2020-03-06 11:48:48 +00:00
commit 404b43b502
4 changed files with 10 additions and 2 deletions

View File

@ -39,7 +39,7 @@
|
*/
'debug' => env('APP_DEBUG', false),
'debug' => (bool) env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------

View File

@ -39,6 +39,7 @@
'array' => [
'driver' => 'array',
'serialize' => false,
],
'database' => [

View File

@ -47,6 +47,14 @@
'transport' => 'ses',
],
'mailgun' => [
'transport' => 'mailgun',
],
'postmark' => [
'transport' => 'postmark',
],
'sendmail' => [
'transport' => 'sendmail',
'path' => '/usr/sbin/sendmail -bs',

View File

@ -7,7 +7,6 @@
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>