From 74cb1477bb921a2378ea22a552b71a48c11e0931 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 20 Jul 2018 16:34:32 +0200 Subject: Better API (integrated oauth completely) --- config/broadcasting.php | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'config/broadcasting.php') diff --git a/config/broadcasting.php b/config/broadcasting.php index 3ca45ea..abaaac3 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -11,11 +11,9 @@ return [ | framework when an event needs to be broadcast. You may set this to | any of the connections defined in the "connections" array below. | - | Supported: "pusher", "redis", "log", "null" - | */ - 'default' => env('BROADCAST_DRIVER', 'null'), + 'default' => env('BROADCAST_DRIVER', 'pusher'), /* |-------------------------------------------------------------------------- @@ -32,12 +30,11 @@ return [ 'pusher' => [ 'driver' => 'pusher', - 'key' => env('PUSHER_APP_KEY'), - 'secret' => env('PUSHER_APP_SECRET'), + 'key' => env('PUSHER_KEY'), + 'secret' => env('PUSHER_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ - 'cluster' => env('PUSHER_APP_CLUSTER'), - 'encrypted' => true, + // ], ], @@ -50,10 +47,6 @@ return [ 'driver' => 'log', ], - 'null' => [ - 'driver' => 'null', - ], - ], ]; -- cgit v1.2.3