Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
2.3 KiB
PHP
Raw Permalink Normal View History

2018-05-09 08:05:17 -05:00
<?php
2023-04-17 13:51:35 +02:00
/*
2019-02-14 08:08:38 -06:00
| !!!! DO NOT EDIT THIS FILE !!!!
|
| You can change settings by setting them in the environment or .env
| If there is something you need to change, but is not available as an environment setting,
| request an environment variable to be created upstream or send a pull request.
*/
2023-04-17 13:51:35 +02:00
return [
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
/*
2023-05-24 22:21:54 +02:00
|--------------------------------------------------------------------------
| Default Broadcaster
|--------------------------------------------------------------------------
|
| This option controls the default broadcaster that will be used by the
| 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", "ably", "redis", "log", "null"
|
*/
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
'default' => env('BROADCAST_DRIVER', 'null'),
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
/*
2023-05-24 22:21:54 +02:00
|--------------------------------------------------------------------------
| 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.
|
*/
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
'connections' => [
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
'pusher' => [
'driver' => 'pusher',
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
2023-05-24 22:21:54 +02:00
'host' => env('PUSHER_HOST') ?: 'api-' . env('PUSHER_APP_CLUSTER', 'mt1') . '.pusher.com',
2023-04-17 13:51:35 +02:00
'port' => env('PUSHER_PORT', 443),
'scheme' => env('PUSHER_SCHEME', 'https'),
'encrypted' => true,
'useTLS' => env('PUSHER_SCHEME', 'https') === 'https',
],
'client_options' => [
// Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html
],
],
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
'ably' => [
'driver' => 'ably',
'key' => env('ABLY_KEY'),
],
2021-10-03 01:04:59 +02:00
2023-04-17 13:51:35 +02:00
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
'log' => [
'driver' => 'log',
],
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
'null' => [
'driver' => 'null',
],
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
],
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
];