Browse Source

Redis configuration.

Taylor Otwell 9 years ago
parent
commit
b7c237397b
1 changed files with 6 additions and 1 deletions
  1. 6 1
      config/broadcasting.php

+ 6 - 1
config/broadcasting.php

@@ -30,11 +30,16 @@ return [
 
         'pusher' => [
             'driver' => 'pusher',
-            'key'    => env('PUSHER_KEY'),
+            'key' => env('PUSHER_KEY'),
             'secret' => env('PUSHER_SECRET'),
             'app_id' => env('PUSHER_APP_ID'),
         ],
 
+        'redis' => [
+            'driver' => 'redis',
+            'connection' => 'default',
+        ],
+
     ],
 
 ];