logux-laravel maintained by tweet9ra
Description
Laravel adator for tweet9ra/logux-php
Authors
Last update
2020/06/19 16:42
(dev-master)
License
Downloads
770
Logux Laravel
This package allows your Laravel application communicate with front-end via WebSockets through Logux proxy server
Quick start
- Install via composer
composer require tweet9ra/logux-laravel - Add
tweet9ra\Logux\Laravel\LoguxServiceProviderto providers list in your app config fileconfig/app.php
...
'providers' => [
...
/*
* Package Service Providers...
*/
tweet9ra\Logux\Laravel\LoguxServiceProvider::class,
...
],
...
- Publish config and routes:
php artisan vendor:publish --provider="tweet9ra\Logux\Laravel\LoguxServiceProvider"
Configure config/logux.php and routes/logux.php
#####Version compatibility with logux backend protocol:
| Package version | Logux backend protocol version |
|---|---|
| < 4.0.0 | 2 |
| ^4.0.0 | 3 |
| ^5.0.0 | 4 |