Download the PHP package alex-hnydiuk/laracent without Composer
On this page you can find all versions of the php package alex-hnydiuk/laracent. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download alex-hnydiuk/laracent
More information about alex-hnydiuk/laracent
Files in alex-hnydiuk/laracent
Package laracent
Short Description Centrifugo broadcaster for laravel >= 5.7 and Centrifugo >= 2.1.0
License MIT
Homepage https://github.com/AlexHnydiuk/laracent
Informations about the package laracent
LARAvel + CENTrifugo = Laracent
Centrifugo broadcast driver for Laravel 5
Introduction
Centrifugo broadcaster for laravel >= 5.7 is fork of centrifuge-broadcaster, based on:
Changenotes
- predis/predis removed from dependencies
- Removed all code, related to Redis
- Updated public functions code in accordance with new version of Centrifugo API
Requirements
- PHP 7.2.12+ or newer
- Laravel 5.7 or newer
- Centrifugo Server 2.1.0 or newer (see here)
Dependencies
- guzzlehttp/guzzle
Installation
Require this package with composer:
Open your config/app.php and add the following to the providers array:
Open your config/broadcasting.php and add new connection like this:
Also you should add these two lines to your .env file:
These lines are optional:
Don't forget to change BROADCAST_DRIVER
setting in .env file!
Basic Usage
To configure Centrifugo server, read official documentation
For broadcasting events, see official documentation of laravel
A simple client usage example:
Available methods
Name | Description |
---|---|
publish(string $channel, array $data) | Send message into channel. |
broadcast(array $channels, array $data) | Send message into multiple channel. |
presence(string $channel) | Get channel presence information (all clients currently subscribed on this channel). |
presence_stats(string $channel) | Get channel presence information in short form (number of clients). |
history(string $channel) | Get channel history information (list of last messages sent into channel). |
history_remove(string $channel) | Remove channel history information. |
unsubscribe(string $channel, string $user) | Unsubscribe user from channel. |
disconnect(string $user_id) | Disconnect user by it's ID. |
channels() | Get channels information (list of currently active channels). |
info() | Get stats information about running server nodes. |
generateConnectionToken(string $userId, int $exp, array $info) | Generate connection token. |
generatePrivateChannelToken(string $client, string $channel, int $exp, array $info) | Generate private channel token. |
License
The MIT License (MIT). Please see License File for more information.