Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 1.67 KB

README.md

File metadata and controls

56 lines (39 loc) · 1.67 KB

Description

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],
];