Set some defaults for the cache and queue drivers in the installer
This commit is contained in:
@@ -6,7 +6,7 @@ return [
|
||||
'env' => env('APP_ENV', 'dev'),
|
||||
'debug' => env('APP_DEBUG', true),
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
'version' => '4.0',
|
||||
'version' => '7.0',
|
||||
|
||||
'timezone' => 'UTC',
|
||||
'locale' => env('APP_LOCALE', 'en'),
|
||||
|
||||
@@ -56,8 +56,8 @@ return [
|
||||
*/
|
||||
|
||||
'from' => [
|
||||
'address' => 'hello@example.com',
|
||||
'name' => 'Example',
|
||||
'name' => env('MAIL_FROM_NAME', 'phpVMS Admin'),
|
||||
'address' => env('MAIL_FROM_ADDRESS', ''),
|
||||
],
|
||||
|
||||
/*
|
||||
|
||||
@@ -14,12 +14,12 @@ return [
|
||||
/**
|
||||
* The skin to use for the front-end
|
||||
*/
|
||||
'skin' => 'default',
|
||||
'skin' => env('APP_SKIN', 'default'),
|
||||
|
||||
/**
|
||||
* Your vaCentral API key
|
||||
*/
|
||||
'vacentral_api_key' => '',
|
||||
'vacentral_api_key' => env('VACENTRAL_API_KEY', ''),
|
||||
|
||||
/**
|
||||
* vaCentral API URL. You likely don't need to change this
|
||||
|
||||
@@ -63,7 +63,6 @@ return [
|
||||
'queue' => 'default',
|
||||
'retry_after' => 90,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user