sparq-php/event
最新稳定版本:1.0.4
Composer 安装命令:
composer require sparq-php/event
包简介
Events made simple
README 文档
README
A simple to use event class. Add events to any class with a few lines of codes.
Installation and Autoloading
The recommended method of installing is via Composer.
Run the following command from your project root:
$ composer require sparq-php/event
Objectives
- Simple to use events
- Easy integration with other packages/frameworks
- Fast and low footprint
Usage
require_once __DIR__ . "/vendor/autoload.php";
use Sparq\Event\EventTrait;
class Foo
{
use EventTrait;
public function __construct()
{
$this->emit('eventName');
}
public function __set($key, $value)
{
$this->emit('set', [$key, $value]);
}
}
$Foo = new Foo();
$Foo->on('eventName', function() {
// do something
});
统计信息
- 总下载量: 3.91k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-06-30