dragonrun1/event-mediator

A general event mediator (dispatcher) which has minimal dependencies so it is easy to drop in and use.

2.0.0 2016-07-31 21:26 UTC

This package is auto-updated.

Last update: 2024-03-19 17:01:30 UTC


README

SensioLabsInsight

Travis-ci: Build Status
Scrutinizer-ci: Scrutinizer Code Quality
Coveralls: Coverage Status

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.