Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edwin-luijten/ekko-broadcast-bundle
Implements the Ekko package in Symfony
https://github.com/edwin-luijten/ekko-broadcast-bundle
Last synced: 1 day 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-17T07:39:40.000Z (over 8 years ago)
- Last Synced: 2024-11-18T05:57:53.417Z (2 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
[![Latest Version](https://img.shields.io/github/release/edwin-luijten/ekko-broadcast-bundle.svg?style=flat)](https://github.com/Edwin-Luijten/ekko-broadcast-bundle/releases)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Build Status](https://img.shields.io/travis/Edwin-Luijten/ekko-broadcast-bundle/master.svg?style=flat-square)](https://travis-ci.org/Edwin-Luijten/ekko-broadcast-bundle)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/Edwin-Luijten/ekko-broadcast-bundle.svg?style=flat-square)](https://scrutinizer-ci.com/g/Edwin-Luijten/ekko-broadcast-bundle/?branch=master)
[![Quality Score](https://img.shields.io/scrutinizer/g/Edwin-Luijten/ekko-broadcast-bundle.svg?style=flat-square)](https://scrutinizer-ci.com/g/Edwin-Luijten/ekko-broadcast-bundle/?branch=master)
[![SensioLabs Insight](https://img.shields.io/sensiolabs/i/c2f65cee-102d-4066-ba1f-311e01d9f03f.svg?maxAge=2592000)](https://insight.sensiolabs.com/projects/c2f65cee-102d-4066-ba1f-311e01d9f03f)
[![Total Downloads](https://img.shields.io/packagist/dt/edwin-luijten/ekko-broadcast-bundle.svg?style=flat-square)](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