Recommend this page to a friend! |
Classes of Michael Cummings | PHP Event Mediator | README.md | Download |
|
DownloadEvent-Mediator<br/><br/> Travis-ci: <br/> Scrutinizer-ci: <br/> Coveralls: A general event mediator (dispatcher) with minimal dependencies so it is easy to drop in and use. InstallingThe recommended way to install Event-Mediator is using Composer from Packagist with:
You can also get it as a zip file from GitHub. LicensingLicensing information can be found in the LICENSE file. IntroductionMost 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. |