Pure and simple PHP based message broker. Allows to simplify async code and make it easier to test.
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.
Every single message must be as light weight as possible.
composer require ecomdev/message-broker
This project is licensed under the MIT License - see the LICENSE file for details