Merge branch 'develop' into feature/api-integration-testing

This commit is contained in:
Dane Everitt
2018-03-21 22:25:16 -05:00
61 changed files with 1017 additions and 453 deletions

View File

@@ -93,11 +93,19 @@ return [
'redis' => [
'client' => 'predis',
'default' => [
'host' => env('REDIS_HOST', 'localhost'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_DATBASE', 0),
],
'sessions' => [
'host' => env('REDIS_HOST', 'localhost'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_DATBASE_SESSIONS', 1),
],
],
];