定制 sparq-php/event 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sparq-php/event

最新稳定版本:1.0.4

Composer 安装命令:

composer require sparq-php/event

包简介

Events made simple

README 文档

README

pipeline status Latest Stable Version coverage report Total Downloads License

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-06-30