ecomdev / message-broker
Library that allows async message like communication for reactive PHP applications
0.1.1
2018-06-21 01:35 UTC
Requires
- php: ^7.1
Requires (Dev)
- phpmd/phpmd: ^2.6
- phpunit/phpunit: ^7.0
- squizlabs/php_codesniffer: ^3.3
This package is auto-updated.
Last update: 2024-10-27 22:00:56 UTC
README
Pure and simple PHP based message broker. Allows to simplify async code and make it easier to test.
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