aerogram / event-bus
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
Installs: 156
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/aerogram/event-bus
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');