Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enniel/illuminate-broadcasting-backport
https://github.com/enniel/illuminate-broadcasting-backport
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/enniel/illuminate-broadcasting-backport
- Owner: enniel
- License: mit
- Created: 2016-09-01T12:42:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-02T08:11:18.000Z (over 8 years ago)
- Last Synced: 2024-11-06T08:08:04.438Z (3 months ago)
- Language: PHP
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel Broadcasting for Laravel 5.1 / 5.2
This package acts as a backport for the Laravel 5.3 broadcasting system, to allow its usage with Laravel 5.1 and Laravel 5.2.
## Installation
You can install the package via composer:
```bash
composer require enniel/illuminate-broadcasting-backport:5.1.x-dev
```For version 5.2:
```bash
composer require enniel/illuminate-broadcasting-backport:5.2.x-dev
```Next, you must load the service provider:
```php
// config/app.php
'providers' => [
// ...
Illuminate\Broadcasting\BroadcastServiceProvider::class,
],
```## Usage
Please refer to the [official Laravel Broadcasting documentation](https://laravel.com/docs/5.3/broadcasting).
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.