maximegosselin / messager
Lightweight and unrestrictive Message Bus implementation.
This package's canonical repository appears to be gone and the package has been frozen as a result.
1.1.0
2017-08-04 15:34 UTC
Requires
- php: ~7.1
Requires (Dev)
This package is auto-updated.
Last update: 2022-02-27 00:38:44 UTC
README
Messager is a lightweight and unrestrictive internal messaging framework for PHP 7.
It can be used in Event-Driven applications to build more specialized components like Command Bus or Event Dispatcher.
System Requirements
PHP 7.1 or later.
Install
Install using Composer:
$ composer require maximegosselin/messager
Messager is registered under the MaximeGosselin\Messager
namespace.
Documentation
Usage overview
use MaximeGosselin\Messager\MessageBus; // Create a message bus with a core message handler $bus = new MessageBus(new MyApp\MyMessageHandler()); // Push a middleware to the stack $bus = $bus->withMiddleware(new MyApp\MyMiddleware()); // Send a message $bus->handle(new MyApp\MyMessage());
Examples
See /examples for real-world implementation examples.
Tests
Run the following command from the project folder.
$ vendor/bin/phpunit
License
The MIT License (MIT). Please see LICENSE for more information.