Files
nnterp-react-admin/config/broadcasting.php
2026-03-13 20:49:46 +08:00

22 lines
502 B
PHP

<?php
return [
'default' => env('BROADCAST_DRIVER', 'null'),
'connections' => [
'pusher' => [
'driver' => 'pusher',
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'),
'useTLS' => true,
],
],
'null' => [
'driver' => 'null',
],
],
];