Merge pull request #4982 from DivineOmega/patch-1

[5.8] Prefix redis database connection by default
This commit is contained in:
Taylor Otwell 2019-04-05 08:55:41 -05:00 committed by GitHub
commit 35374927bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,7 @@
<?php
use Illuminate\Support\Str;
return [
/*
@ -117,6 +119,7 @@ return [
'options' => [
'cluster' => env('REDIS_CLUSTER', 'predis'),
'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database',
],
'default' => [