enochzg / yii2-mosquitto
There is no license information available for the latest version (1.0.5) of this package.
yii2-mosquitto
Package info
github.com/EnochZg/yii2-mosquitto
Type:yii2-extension
pkg:composer/enochzg/yii2-mosquitto
1.0.5
2016-03-19 07:12 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2026-03-26 08:02:41 UTC
README
Installation
The component is based on php-mosquitto extension. The download link is https://github.com/mgdm/Mosquitto-PHP.
composer require enochzg/yii2-mosquitto
Usage
Add target class in your project config:
'components' => [ 'mosquitto' => [ 'class' => 'enochzg\mosquitto\Mosquitto', 'host' => '127.0.0.1', 'port' => '1883', 'keepalive' => 60, 'cafile' => '[your/cert/path]/ca.crt', 'certfile' => '[your/cert/path]/client.crt', 'keyfile' => '[your/cert/path]/client.key', ], //...... ]
e.g.
yii::$app->mosquitto->publish('1', 'message', 2);