betsuno / yii2-centrifugo
Centrifugo component for Yii2 framework
Installs: 6 438
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 1
Forks: 3
Open Issues: 0
Requires
- sl4mmer/phpcent: ^1.0
- yiisoft/yii2: ^2.0
This package is auto-updated.
Last update: 2025-03-07 00:52:42 UTC
README
There is a wrapper for Centrifugo client based on PHPCent
Installation
Run command in shell
> php composer.phar require "betsuno/yii2-centrifugo"
or add this line in to the require
section of the composer.json
file in your project
"betsuno/yii2-centrifugo": "*"
Setup
Add into your config file as following
'components' => [ ... 'centrifugo' => [ 'class' => 'yii2\centrifugo\Client', 'host' => 'http://localhost:8000', 'secret' => 'very-long-secret-key', // also you can specify your own transport class as below 'transport' => [ 'class' => 'your\transport\ClassName', ... ] ], ... ]
Usage
Yii::$app->centrifugo->publish('test', ['message' => 'hello world']);