Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 391 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 391 Bytes

Custom websockets driver

Config

config/broadcasting.php

    //

    'custom' => [
        'driver' => 'custom-broadcaster',
        'app_secret' => env('WEBSOCKETS_APP_SECRET'),
        'app_id' => env('WEBSOCKETS_APP_ID'),
        'host' => env('WEBSOCKETS_HOST'),
        'port' => env('WEBSOCKETS_PORT', 4001),
        'scheme' => env('WEBSOCKETS_SCHEME', 'ws'),
    ],