sharkydog / message-broker
Message Broker to interconnect PHP apps
v1.1.1
2024-11-20 11:07 UTC
Requires
- php: >=7.4
- react/event-loop: ^1.5
- react/socket: ^1.16
- sharkydog/http: ^1.2
- sharkydog/private-emitter: ^1.0
Suggests
- sharkydog/logger: Display messages other than errors and warnings
README
Message Broker to interconnect PHP apps
The message broker is intended to connect several apps and distribute messages between them.
The apps can be connected locally or remotely, even through the big wild internet, though this will not be secure.
The messaging system is based around topics and subscriptions, as with other message brokers.
Messages are send only to peers that have subscribed to a given topic or to a wildcard topic matching it. There are no message queues or retention. No database. If a message is sent, it will either be received by connected peers or it will be lost forever, never to be seen again.
See main/examples for how to use.