From b7c237397b02e57d13539fb1befb717974e60d42 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 27 Apr 2015 15:52:54 -0500 Subject: [PATCH] Redis configuration. --- config/broadcasting.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 @@ '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', + ], + ], ];