Download the PHP package imiphp/imi-mqtt without Composer

On this page you can find all versions of the php package imiphp/imi-mqtt. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package imi-mqtt

imi-mqtt

Latest Version Php Version Swoole Version IMI License

介绍

在 imi 框架中开发 MQTT 服务端,并且内置了一个 MQTT 客户端。

MQTT是一个基于客户端-服务器的消息发布/订阅传输协议。MQTT协议是轻量、简单、开放和易于实现的,这些特点使它适用范围非常广泛。在很多情况下,包括受限的环境中,如:机器与机器(M2M)通信和物联网(IoT)。其在,通过卫星链路通信传感器、偶尔拨号的医疗设备、智能家居、及一些小型化设备中已广泛使用。

本仓库仅用于浏览,不接受 issue 和 Pull Requests,请前往:https://github.com/imiphp/imi

Composer

本项目可以使用composer安装,遵循psr-4自动加载规则,在你的 composer.json 中加入下面的内容:

然后执行 composer update 安装。

使用说明

可以参考 exampletests 目录示例。

项目配置文件:

MQTT 通讯数据包类

imi-mqtt 基于 binsoul/net-mqtt 开发,使用的都是这个包中的数据包结构类。

类名一般是BinSoul\Net\Mqtt\Packet\XXX

如:\BinSoul\Net\Mqtt\Packet\SubscribeRequestPacket

MQTT 服务开发

首先,服务器配置的type设为MQTT,并且定义好控制器。

控制器需要继承Imi\Server\MQTT\BaseMQTTController类,并且实现方法。

如果你是主服务器,配置如下:

如果你是子服务器,配置如下下:

在控制器方法中返回一个包对象,代表响应当前请求。

同样支持\Imi\Server\Server::send()等方法,详见:https://doc.imiphp.com/v2.0/utils/Server.html

MQTT 客户端开发

事件监听类:

客户端调用:

客户端参数表:

参数名 说明
host 服务器主机名称
port 服务器端口号
timeout 网络通讯超时时间
pingTimespan 定时 ping 的时间间隔,单位秒。默认为 NULL 则不自动 ping
protocol 协议级别,默认43-MQIsdp;4-MQTT
username 用户名
password 密码
clientId 客户端ID
keepAlive 保活时间
clean 清除会话
will 遗嘱消息,具体结构看下面的表格
ssl 使用 SSL 连接
sslCertFile 证书文件
sslKeyFile 证书密钥文件
sslVerifyPeer 验证服务器端证书
sslAllowSelfSigned 允许自签名证书
sslHostName 服务器主机名称
sslCafile CA 证书
sslCapath 证书目录

will 遗嘱消息参数表:

参数名 说明
topic 主题
payload 有效载荷
qosLevel 0-最多一次的传输;1-至少一次的传输;2-只有一次的传输
retain 保留
duplicate 重复

免费技术支持

QQ群:17916227 点击加群,如有问题会有人解答和修复。

运行环境

版权信息

imi-mqtt 遵循 MIT 开源协议发布,并提供免费使用。

捐赠

开源不求盈利,多少都是心意,生活不易,随缘随缘……


All versions of imi-mqtt with dependencies

PHP Build Version
Package Version
Requires binsoul/net-mqtt Version ^0.8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package imiphp/imi-mqtt contains the following files

Loading the files please wait ....