rkljw 589f85179c 第一次提交public_producer 10 месяцев назад
..
src 589f85179c 第一次提交public_producer 10 месяцев назад
.gitattributes 589f85179c 第一次提交public_producer 10 месяцев назад
LICENSE 589f85179c 第一次提交public_producer 10 месяцев назад
README.md 589f85179c 第一次提交public_producer 10 месяцев назад
composer.json 589f85179c 第一次提交public_producer 10 месяцев назад

README.md

Événement

Événement is a very simple event dispatching library for PHP.

It has the same design goals as Silex and Pimple, to empower the user while staying concise and simple.

It is very strongly inspired by the EventEmitter API found in node.js.

Continuous Integration Latest Stable Version Total Downloads License

Fetch

The recommended way to install Événement is through composer. By running the following command:

$ composer require evenement/evenement

Usage

Creating an Emitter

<?php
$emitter = new Evenement\EventEmitter();

Adding Listeners

<?php
$emitter->on('user.created', function (User $user) use ($logger) {
    $logger->log(sprintf("User '%s' was created.", $user->getLogin()));
});

Removing Listeners

<?php
$emitter->removeListener('user.created', function (User $user) use ($logger) {
    $logger->log(sprintf("User '%s' was created.", $user->getLogin()));
});

Emitting Events

<?php
$emitter->emit('user.created', [$user]);

Tests

$ ./vendor/bin/phpunit

License

MIT, see LICENSE.