https://github.com/edwin-luijten/ekko-broadcast-bundle
Implements the Ekko package in Symfony
https://github.com/edwin-luijten/ekko-broadcast-bundle
Last synced: 2 months ago
JSON representation
Implements the Ekko package in Symfony
- Host: GitHub
- URL: https://github.com/edwin-luijten/ekko-broadcast-bundle
- Owner: Edwin-Luijten
- License: mit
- Created: 2016-08-03T05:55:27.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-17T07:39:40.000Z (almost 9 years ago)
- Last Synced: 2025-01-19T08:31:30.564Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Ekko Broadcast Bundle
[](https://github.com/Edwin-Luijten/ekko-broadcast-bundle/releases)
[](LICENSE.md)
[](https://travis-ci.org/Edwin-Luijten/ekko-broadcast-bundle)
[](https://scrutinizer-ci.com/g/Edwin-Luijten/ekko-broadcast-bundle/?branch=master)
[](https://scrutinizer-ci.com/g/Edwin-Luijten/ekko-broadcast-bundle/?branch=master)
[](https://insight.sensiolabs.com/projects/c2f65cee-102d-4066-ba1f-311e01d9f03f)
[](https://packagist.org/packages/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.
## Install
Via Composer
``` bash
$ composer require edwin-luijten/ekko-broadcast-bundle
```## Usage
Please check the [wiki page](https://github.com/Edwin-Luijten/ekko-broadcast-bundle/wiki) for a detailed implementation documentation.
### Enable ###
Enable the bundle by adding it to the list of registered bundles
in the `app/AppKernel.php` file of your project:```php