37 lines
1.1 KiB
Markdown
Executable File
37 lines
1.1 KiB
Markdown
Executable File
# net-mqtt
|
|
|
|
[![Latest Version on Packagist][ico-version]][link-packagist]
|
|
[![Software License][ico-license]](LICENSE.md)
|
|
[![Total Downloads][ico-downloads]][link-downloads]
|
|
|
|
MQTT is a machine-to-machine (M2M) / Internet of Things (IoT) connectivity protocol. It provides a lightweight method of carrying out messaging using a publish/subscribe model.
|
|
|
|
This package implements the MQTT protocol versions 3.1 and 3.1.1.
|
|
|
|
|
|
## Install
|
|
|
|
Via composer:
|
|
|
|
``` bash
|
|
$ composer require binsoul/net-mqtt
|
|
```
|
|
|
|
## Testing
|
|
|
|
``` bash
|
|
$ composer test
|
|
```
|
|
|
|
## License
|
|
|
|
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
|
|
|
|
[ico-version]: https://img.shields.io/packagist/v/binsoul/net-mqtt.svg?style=flat-square
|
|
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
|
|
[ico-downloads]: https://img.shields.io/packagist/dt/binsoul/net-mqtt.svg?style=flat-square
|
|
|
|
[link-packagist]: https://packagist.org/packages/binsoul/net-mqtt
|
|
[link-downloads]: https://packagist.org/packages/binsoul/net-mqtt
|
|
[link-author]: https://github.com/binsoul
|