updated configs

This commit is contained in:
denisdulici 2020-03-13 10:34:12 +03:00
parent c73dc28782
commit 9fa6a2c54b
6 changed files with 17 additions and 17 deletions

View File

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

View File

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

View File

@ -25,9 +25,9 @@ return [
'allowed_headers' => ['*'], 'allowed_headers' => ['*'],
'exposed_headers' => false, 'exposed_headers' => [],
'max_age' => false, 'max_age' => 0,
'supports_credentials' => false, 'supports_credentials' => false,

View File

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

View File

@ -55,6 +55,7 @@ return [
'secret' => env('AWS_SECRET_ACCESS_KEY'), 'secret' => env('AWS_SECRET_ACCESS_KEY'),
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
'queue' => env('SQS_QUEUE', 'your-queue-name'), 'queue' => env('SQS_QUEUE', 'your-queue-name'),
'suffix' => env('SQS_SUFFIX'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
], ],

View File

@ -33,18 +33,4 @@ return [
realpath(storage_path('framework/views')) realpath(storage_path('framework/views'))
), ),
/*
|--------------------------------------------------------------------------
| Blade View Modification Checking
|--------------------------------------------------------------------------
|
| On every request the framework will check to see if a view has expired
| to determine if it needs to be recompiled. If you are in production
| and precompiling views this feature may be disabled to save time.
|
*/
'expires' => env('VIEW_CHECK_EXPIRATION', true),
]; ];