Looking to hire Laravel developers? Try LaraJobs
This package is not available.

laravel-echo-driver maintained by pedrogaldino

Description
Laravel Echo Driver for Broadcasting
Author
Last update
2017/03/30 23:08 (dev-master)
License
Downloads
46

Comments
comments powered by Disqus

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')
        ]
    ...
]