pedrogaldino / laravel-echo-driver
Laravel Echo Driver for Broadcasting
Installs: 46
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/pedrogaldino/laravel-echo-driver
Requires
- laravel/framework: ~5.3
- pusher/pusher-php-server: ^2.6
This package is auto-updated.
Last update: 2025-09-29 01:39:03 UTC
README
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') ] ... ]