env('BROADCAST_DRIVER', 'pusher'), /* |-------------------------------------------------------------------------- | Broadcast Connections |-------------------------------------------------------------------------- | | Here you may define all of the broadcast connections that will be used | to broadcast events to other systems or over websockets. Samples of | each available type of connection are provided inside this array. | */ 'connections' => [ 'pusher' => [ 'driver' => 'pusher', 'key' => env('PUSHER_APP_KEY', '12345'), 'secret' => env('PUSHER_APP_SECRET', '12345'), 'app_id' => env('PUSHER_APP_ID', '12345'), 'options' => [ 'cluster' => env('PUSHER_APP_CLUSTER', 'mt1'), 'encrypted' => env('BROADCAST_SSL', false), 'host' => '127.0.0.1', 'port' => 6001, 'scheme' => env('BROADCAST_SSL', false) ? 'https' : 'http', 'curl_options' => [ CURLOPT_SSL_VERIFYHOST => 0, CURLOPT_SSL_VERIFYPEER => 0, ] ], ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', ], 'log' => [ 'driver' => 'log', ], 'null' => [ 'driver' => 'null', ], ], ];