π What's new?
β Support for Routing Key Definition
This update introduces the ability to define custom routing keys when publishing messages β giving you more flexibility and control over message delivery in topic or direct exchanges.
π§ Example usage:
SimpleMQ::exchange('my-exchange')
->setRoutingKey('user.created')
->setBody(['id' => 123])
->publish();
π Special thanks to @fbagmon for the contribution!
π Merged via Pull Request #4