tomchanio / php_cent
Centrifugo (Centrifuge) [2.0+] PHP Server REDIS & HTTP API implementation for Laravel 5.5+
1.4
2021-04-11 19:29 UTC
Requires
- illuminate/container: ^5.5
README
Centrifugo (Centrifuge) [2.0+] PHP Server HTTP API implementation for Laravel 5.5+
Base Installation
- Run
composer require tomchanio/laravel_cent
&composer update
- Create
config/centrifugo.php
as provided below - Add alias in
config/app.php
as provided below
Config example config/centrifugo.php
<?php return [ 'url' => 'http://localhost:8000/api/', // full api url 'secret' => 'skoniksnyashamoyanikamuneotdam', // you super secret key 'apikey' => 'skoniksnyashamoyanikamuneotdam', // you api key ];
Alias additions config/app.php
'aliases' => [ ... 'Centrifugo'=> Tomchanio\Centrifugo\Centrifugo::class, ]
[Module usage || sending your requests] example
<?php use Centrifugo; class Controller { public function your_func() { // declare Centrifugo $Centrifugo = new Centrifugo(); // generating token example $userid = '1337_1448_228'; $info = ['token' => '123']; $token = $Centrifugo->generateToken($userid, $info); // publishing example $Centrifugo->publish("channel" , ["yout text or even what rou want"]); // each method returns its response; // list of awailible methods: $response = $Centrifugo->publish($channle, $messageData); $response = $Centrifugo->broadcast($channles, $messageData); $response = $Centrifugo->unsubscribe($channle, $userId); $response = $Centrifugo->disconnect($userId); $response = $Centrifugo->presence($channle); $response = $Centrifugo->presence_stats($channle); $response = $Centrifugo->history($channle); $response = $Centrifugo->history_remove($channle); $response = $Centrifugo->channels(); $response = $Centrifugo->info(); $response = $Centrifugo->generateToken($user); // You can create a controller to bild your own interface; }