Browse Source

Merge pull request #4051 from lokielse/master

Support predis v1.1.1
Taylor Otwell 7 years ago
parent
commit
b122f775e9
1 changed files with 3 additions and 1 deletions
  1. 3 1
      config/database.php

+ 3 - 1
config/database.php

@@ -111,9 +111,11 @@ return [
 
         'default' => [
             'host' => env('REDIS_HOST', '127.0.0.1'),
-            'password' => env('REDIS_PASSWORD', null),
             'port' => env('REDIS_PORT', 6379),
             'database' => 0,
+            'parameters' => [
+                'password' => env('REDIS_PASSWORD', '')
+            ]
         ],
 
     ],