meteo-concept / react-mqtt-bundle
MQTT client built with React packaged as a Symfony 5+ bundle
Installs: 54
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.4|^8.0
- psr/log: ^1.1
- react/promise: ^2.8
- react/socket: ^1.2
- symfony/config: ~5.4|~6.4
Requires (Dev)
- nyholm/symfony-bundle-test: ^3.0
- phpunit/phpunit: ^9.5
- symfony/phpunit-bridge: ~5.4|~6.4|7.0
This package is auto-updated.
Last update: 2024-11-04 09:00:08 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], ];