diff options
author | Marvin Borner | 2018-07-20 16:34:32 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-20 16:34:32 +0200 |
commit | 74cb1477bb921a2378ea22a552b71a48c11e0931 (patch) | |
tree | 621ab17315be667c16dad8f3d5f44d67a7a47e8f /config/broadcasting.php | |
parent | 400591b34d4b0a6288834539808a9dede8a60e3a (diff) |
Better API (integrated oauth completely)
Diffstat (limited to 'config/broadcasting.php')
-rw-r--r-- | config/broadcasting.php | 15 |
1 files changed, 4 insertions, 11 deletions
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', - ], - ], ]; |