Yannick Warnier 76a0eae5ea Add static resources and remove tests dir for beta release | 5 年之前 | |
---|---|---|
.. | ||
doc | 5 年之前 | |
src | 5 年之前 | |
tests | 5 年之前 | |
.gitignore | 5 年之前 | |
.travis.yml | 5 年之前 | |
LICENSE | 5 年之前 | |
README.md | 5 年之前 | |
composer.json | 5 年之前 | |
phpunit.xml.dist | 5 年之前 |
Événement is a very simple event dispatching library for PHP 5.3.
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. It includes an implementation of EventEmitter2, that extends the original EventEmitter.
The recommended way to install Événement is through composer.
Just create a composer.json file for your project:
{
"require": {
"evenement/evenement": "1.0.*"
}
}
And run these two commands to install it:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar install
Now you can add the autoloader, and you will have access to the library:
<?php
require 'vendor/autoload.php';
<?php
$emitter = new Evenement\EventEmitter();
<?php
$emitter->on('user.create', function (User $user) use ($logger) {
$logger->log(sprintf("User '%s' was created.", $user->getLogin()));
});
<?php
$emitter->emit('user.create', array($user));
$ phpunit
MIT, see LICENSE.