feat(config): add test configuration to reverb.php

This commit is contained in:
fsociety
2024-10-02 13:56:19 +02:00
parent 75f11e3023
commit 33b5c9068e

View File

@@ -84,6 +84,20 @@ return [
'ping_interval' => env('REVERB_APP_PING_INTERVAL', 60),
'max_message_size' => env('REVERB_APP_MAX_MESSAGE_SIZE', 10_000),
],
[
'key' => 'test',
'secret' => env('REVERB_APP_SECRET'),
'app_id' => '521001',
'options' => [
'host' => env('REVERB_HOST'),
'port' => env('REVERB_PORT', 443),
'scheme' => env('REVERB_SCHEME', 'https'),
'useTLS' => env('REVERB_SCHEME', 'https') === 'https',
],
'allowed_origins' => ['*'],
'ping_interval' => env('REVERB_APP_PING_INTERVAL', 60),
'max_message_size' => env('REVERB_APP_MAX_MESSAGE_SIZE', 10_000),
],
],
],