ecomdev/message-broker

Library that allows async message like communication for reactive PHP applications

0.1.1 2018-06-21 01:35 UTC

This package is auto-updated.

Last update: 2024-04-27 21:02:53 UTC


README

Pure and simple PHP based message broker. Allows to simplify async code and make it easier to test.

Build Status Maintainability Test Coverage

Why do you need it?

When you develop async applications - blocking operations can quickly become the main bottleneck. This library allows to separate async thread from blocking operation by introduction of message based communication between blocking and non blocking code.

Concept

Every single message must be as light weight as possible.

Installation

composer require ecomdev/message-broker

License

This project is licensed under the MIT License - see the LICENSE file for details