laravel / reverb

Laravel Reverb provides a real-time WebSocket communication backend for Laravel applications.
https://reverb.laravel.com
MIT License
1.05k stars 76 forks source link

Custom driver #108

Closed SylvesterDamgaard closed 5 months ago

SylvesterDamgaard commented 5 months ago

Can you tell me where to add a custom driver?

Adding this to my AppServiceProvider is not working as I would expect.

public function register(): void
{
    app(ApplicationManager::class)->extend('custom', function() {
        // return my custom ApplicationProvider
    });

}

Starting reverb with php artisan reverb:start returns the exception: Driver [cutom] not supported.

driesvints commented 5 months ago

Hi there. Right now we don't support custom drivers, sorry.