edwin-luijten/ekko-broadcast-bundle
In many modern web applications, there is some kind of real-time user experience. When some data is updated on the server, a message is typically sent over a websocket connection or push notification to be handled by the client.
This library aims to help you with that, with support for Pusher and Redis out of the box.
Via Composer
$ composer require edwin-luijten/ekko-broadcast-bundle
Please check the wiki page for a detailed implementation documentation.
Enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php file of your project:
<?php
// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new EdwinLuijten\Ekko\BroadcastBundle\BroadcastBundle(),
);
// ...
}
// ...
}
Please see CHANGELOG for more information what has changed recently.
$ ./vendor/bin/phpunit
Please see CONTRIBUTING for details.
If you discover any security related issues, please email :author_email instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
How can I help you explore Laravel packages today?