4 * Broadcasting configuration options.
6 * Changes to these config files are not supported by BookStack and may break upon updates.
7 * Configuration should be altered via the `.env` file or environment variables.
8 * Do not edit this file unless you're happy to maintain any changes yourself.
13 // Default Broadcaster
14 // This option controls the default broadcaster that will be used by the
15 // framework when an event needs to be broadcast. This can be set to
16 // any of the connections defined in the "connections" array below.
17 'default' => env('BROADCAST_DRIVER', 'pusher'),
19 // Broadcast Connections
20 // Here you may define all of the broadcast connections that will be used
21 // to broadcast events to other systems or over websockets. Samples of
22 // each available type of connection are provided inside this array.
27 'key' => env('PUSHER_APP_KEY'),
28 'secret' => env('PUSHER_APP_SECRET'),
29 'app_id' => env('PUSHER_APP_ID'),
31 'cluster' => env('PUSHER_APP_CLUSTER'),
38 'connection' => 'default',