drmer/mqtt-client

Mqtt client in PHP

v0.2 2018-12-03 01:19 UTC

This package is auto-updated.

Last update: 2024-03-29 03:50:32 UTC


README

Mqtt client in PHP

Build Status Maintainability Test Coverage

Installation

composer require drmer/mqtt-client

Usage

use Drmer\Mqtt\Client\SimpleClient;

require __DIR__ . '/../vendor/autoload.php';

$client = SimpleClient::v4();

$client->debug = true;

$client->connect('127.0.0.1', 1883);
$client->publish('hello/world', 'Message from SimpleClient', 1);
$client->disconnect();
$client->close();

Warning

This library is still unstable, please DO NOT use this in production.