meteo-concept/react-mqtt-bundle

MQTT client built with React packaged as a Symfony 5+ bundle

v0.1 2021-09-20 16:02 UTC

This package is auto-updated.

Last update: 2024-04-20 22:10:49 UTC


README

This bundle brings a MQTT client class for use in your Symfony 5+ apps. It's built with React. This bundle is mainly based on a project by alexmorbo, itself based on an earlier library by oliverlorenz. Many thanks to them.

This project is licensed under the GNU Lesser General Public Licence (LGPL), version 3 or later, of the Free Software Foundation. See the license text for details.

NOT SUITABLE for general purpose YET! Consider yourself warned.

TODO:

  • finish the QoS workflows
  • finish the tests
  • add a Travis configuration
  • ...

Installation

Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.

Applications that use Symfony Flex

Open a command console, enter your project directory and execute:

$ composer require meteo-concept/react-mqtt-bundle

Applications that don't use Symfony Flex

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require meteo-concept/react-mqtt-bundle

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in the config/bundles.php file of your project:

// config/bundles.php

return [
    // ...
    MeteoConcept\ReactMqttBundle\MeteoConceptReactMqttBundle::class => ['all' => true],
];