dragonrun1 / event-mediator
A general event mediator (dispatcher) which has minimal dependencies so it is easy to drop in and use.
Requires
- php: >=7.0, <7.2
- ext-spl: *
- pimple/pimple: ~3.0
Requires (Dev)
- henrikbjorn/phpspec-code-coverage: dev-master
- phpspec/nyan-formatters: ~2.0.0
- phpspec/phpspec: ~3.0.0
- phpunit/php-code-coverage: ~4.0
- symfony/console: ~2.8
Replaces
- dragonrun1/event-mediator: 2.0.*
README
Travis-ci:
Scrutinizer-ci:
Coveralls:
A general event mediator (dispatcher) with minimal dependencies so it is easy to drop in and use.
Installing
The recommended way to install Event-Mediator is using Composer from Packagist with:
composer require dragonrun1/event-mediator
You can also get it as a zip file from GitHub.
Licensing
Licensing information can be found in the LICENSE file.
Introduction
Most people might know event mediator as an event dispatcher instead and both names would have worked. The reason I choose to call it a mediator is it follows the mediator pattern. For those of you that are familiar with Symfony 2 and it's EventDispatcher component then Event Mediator started out as basically a drop in replace for it without the (IMHO) huge dependence overhead often seen with Symfony components. Event Mediator has since grown into something better since then I think.
To get a better understanding about Event-Mediator and how you might use it check out Understanding Event-Mediator
Changes
- Started new 2.0-dev branch with many BC breaking changes.
- The 1.0 series is now end of life and all application developers should update to newer 2.0 versions ASAP. If your code only used the listener methods the move should be easy with few changes needed. If application uses any of the subscriber stuff you will need to update the returned event array to reflect the new expected format.
For a more complete understand of the changes refer to the commit messages and new code.