aboutsummaryrefslogtreecommitdiffhomepage
path: root/config/broadcasting.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/broadcasting.php')
-rw-r--r--config/broadcasting.php15
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',
- ],
-
],
];