aerogram / event-bus
There is no license information available for the latest version (0.2.2) of this package.
This package's canonical repository appears to be gone and the package has been frozen as a result.
0.2.2
2017-03-03 15:13 UTC
Requires
- php: ^7.1
- aerogram/adapter: ~0.1
- aerogram/middleware: ~0.1
Requires (Dev)
- phpunit/phpunit: ^6.0
README
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');