Skip to content

Commit 9ec8039

Browse files
committed
Update for Laravel 7.1.0
1 parent 331b09e commit 9ec8039

File tree

6 files changed

+11
-15
lines changed

6 files changed

+11
-15
lines changed

config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
|
4040
*/
4141

42-
'debug' => env('APP_DEBUG', false),
42+
'debug' => (bool) env('APP_DEBUG', false),
4343

4444
/*
4545
|--------------------------------------------------------------------------

config/cache.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939

4040
'array' => [
4141
'driver' => 'array',
42+
'serialize' => false,
4243
],
4344

4445
'database' => [

config/mail.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@
4747
'transport' => 'ses',
4848
],
4949

50+
'mailgun' => [
51+
'transport' => 'mailgun',
52+
],
53+
54+
'postmark' => [
55+
'transport' => 'postmark',
56+
],
57+
5058
'sendmail' => [
5159
'transport' => 'sendmail',
5260
'path' => '/usr/sbin/sendmail -bs',

config/queue.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
'secret' => env('AWS_SECRET_ACCESS_KEY'),
5656
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
5757
'queue' => env('SQS_QUEUE', 'your-queue-name'),
58+
'suffix' => env('SQS_SUFFIX'),
5859
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
5960
],
6061

config/view.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,4 @@
3333
realpath(storage_path('framework/views'))
3434
),
3535

36-
/*
37-
|--------------------------------------------------------------------------
38-
| Blade View Modification Checking
39-
|--------------------------------------------------------------------------
40-
|
41-
| On every request the framework will check to see if a view has expired
42-
| to determine if it needs to be recompiled. If you are in production
43-
| and precompiling views this feature may be disabled to save time.
44-
|
45-
*/
46-
47-
'expires' => env('VIEW_CHECK_EXPIRATION', true),
48-
4936
];

phpunit.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<testsuite name="Unit">
88
<directory suffix="Test.php">./tests/Unit</directory>
99
</testsuite>
10-
1110
<testsuite name="Feature">
1211
<directory suffix="Test.php">./tests/Feature</directory>
1312
</testsuite>

0 commit comments

Comments
 (0)