pedrogaldino/laravel-echo-driver
Laravel Echo Driver for Broadcasting
46
| Install | |
|---|---|
composer require pedrogaldino/laravel-echo-driver |
|
| Latest Version: | v1.2.1 |
| License: | MIT |
| Last Updated: | Mar 30, 2017 |
| Links: | GitHub · Packagist |
Maintainer: pedrogaldino
Echo Broadcasting Events Driver for Laravel
Installation
Using Composer:
composer require pedrogaldino/laravel-echo-driver
In your config/app.php file add the following provider to your service providers array:
'providers' => [
...
PedroGaldino\EchoBroadcastDriver\BroadcastServiceProvider::class,
...
]
In your config/broadcasting.php file set the default driver to 'echo' and add the connection configuration like so:
'default' => 'echo',
'connections' => [
...
'echo' => [
'driver' => 'echo',
'connection' => env('ECHO_HOST','localhost')
]
...
]
Related Packages
anik/mercure
dunglas/mercure publisher implementation for any PHP-based application. Publish...
28
8
adaojunior/laravel-postgresql-broadcast-driver
Postgresql broadcasting events driver for Laravel
1,080
7
rohitshakya/laravel-beacon
Realtime notification UI for Laravel with topbar dropdown, inbox, and Livewire +...
114
4
heyosseus/filum
Broadcasting-agnostic real-time chat between admin users, inside a Filament pane...
130
3