]> BookStack Code Mirror - bookstack/blob - app/Config/broadcasting.php
PHP: Updated min version to 8.2
[bookstack] / app / Config / broadcasting.php
1 <?php
2
3 /**
4  * Broadcasting configuration options.
5  *
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.
9  */
10
11 return [
12
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' => 'null',
18
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.
23     'connections' => [
24
25         // Default options removed since we don't use broadcasting.
26
27         'log' => [
28             'driver' => 'log',
29         ],
30
31         'null' => [
32             'driver' => 'null',
33         ],
34
35     ],
36
37 ];