diff --git a/config/broadcasting.php b/config/broadcasting.php index 03c791b8..3b21dc22 100644 --- a/config/broadcasting.php +++ b/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', + ], + ], ];