tweet9ra / logux-laravel
Laravel adator for tweet9ra/logux-php
Installs: 770
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/tweet9ra/logux-laravel
Requires
- tweet9ra/logux-processor: ^5.0.0
This package is auto-updated.
Last update: 2025-10-20 02:14:19 UTC
README
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 |