aerogram/event-bus

There is no license information available for the latest version (0.2.2) of this package.

0.2.2 2017-03-03 15:13 UTC

This package is auto-updated.

Last update: 2020-11-20 11:41:13 UTC


README

Latest Stable Version Build Status License Total Downloads

Simple event bus.

Installation

Install Composer and run the following command to get the latest version:

composer install aerogram/event-bus

Usage

<?php

use Aerogram\EventBus\EventBus\SimpleBus;

$eventBus = new SimpleBus;
$eventBus->publish('{"email": "john@example.com"}', 'user.registered');