File tree 6 files changed +11
-15
lines changed
6 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 39
39
|
40
40
*/
41
41
42
- 'debug ' => env ('APP_DEBUG ' , false ),
42
+ 'debug ' => ( bool ) env ('APP_DEBUG ' , false ),
43
43
44
44
/*
45
45
|--------------------------------------------------------------------------
Original file line number Diff line number Diff line change 39
39
40
40
'array ' => [
41
41
'driver ' => 'array ' ,
42
+ 'serialize ' => false ,
42
43
],
43
44
44
45
'database ' => [
Original file line number Diff line number Diff line change 47
47
'transport ' => 'ses ' ,
48
48
],
49
49
50
+ 'mailgun ' => [
51
+ 'transport ' => 'mailgun ' ,
52
+ ],
53
+
54
+ 'postmark ' => [
55
+ 'transport ' => 'postmark ' ,
56
+ ],
57
+
50
58
'sendmail ' => [
51
59
'transport ' => 'sendmail ' ,
52
60
'path ' => '/usr/sbin/sendmail -bs ' ,
Original file line number Diff line number Diff line change 55
55
'secret ' => env ('AWS_SECRET_ACCESS_KEY ' ),
56
56
'prefix ' => env ('SQS_PREFIX ' , 'https://sqs.us-east-1.amazonaws.com/your-account-id ' ),
57
57
'queue ' => env ('SQS_QUEUE ' , 'your-queue-name ' ),
58
+ 'suffix ' => env ('SQS_SUFFIX ' ),
58
59
'region ' => env ('AWS_DEFAULT_REGION ' , 'us-east-1 ' ),
59
60
],
60
61
Original file line number Diff line number Diff line change 33
33
realpath (storage_path ('framework/views ' ))
34
34
),
35
35
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
-
49
36
];
Original file line number Diff line number Diff line change 7
7
<testsuite name =" Unit" >
8
8
<directory suffix =" Test.php" >./tests/Unit</directory >
9
9
</testsuite >
10
-
11
10
<testsuite name =" Feature" >
12
11
<directory suffix =" Test.php" >./tests/Feature</directory >
13
12
</testsuite >
You can’t perform that action at this time.
0 commit comments