michel/psr14-event-dispatcher
Composer 安装命令:
composer require michel/psr14-event-dispatcher
包简介
This library provides an easy-to-use implementation of a PSR-14 event dispatcher, allowing you to manage event-driven functionality in your PHP applications.
README 文档
README
This library provides an easy-to-use implementation of a PSR-14 event dispatcher, allowing you to manage event-driven functionality in your PHP applications.
Installation
Make sure to include the library in your composer.json or install it directly:
composer require michem/psr14-event-dispatcher
Creating an Event
To create a custom event, extend the Event class provided by the library:
<?php
namespace App\Event;
use Michel\EventDispatcher\Event;
/**
* Class PreCreateEvent
* @package App\Event
*/
class PreCreateEvent extends Event
{
private object $object;
/**
* PreCreateEvent constructor.
*
* @param object $object
*/
public function __construct(object $object)
{
$this->object = $object;
}
/**
* Get the associated object.
*
* @return object
*/
public function getObject(): object
{
return $this->object;
}
}
Creating a Listener
A listener class handles the event logic. It should implement an __invoke method that accepts the event as a parameter:
<?php
namespace App\Listener;
use App\Entity\User;
use App\Event\PreCreateEvent;
/**
* Class UserListener
* @package App\Listener
*/
class UserListener
{
/**
* Handle the event.
*
* @param PreCreateEvent $event
*/
public function __invoke(PreCreateEvent $event): void
{
$object = $event->getObject();
if ($object instanceof User) {
// Perform actions with the User object
}
}
}
Usage
To use the event dispatcher, register your listeners with a ListenerProvider and dispatch events as needed:
<?php
use App\Event\PreCreateEvent;
use App\Listener\UserListener;
// Create the listener provider and register the listener
$listenerProvider = (new ListenerProvider())
->addListener(PreCreateEvent::class, new UserListener());
// Create the event dispatcher with the listener provider
$dispatcher = new \Michel\EventDispatcher\EventDispatcher($listenerProvider);
// Dispatch the event after saving a user to the database
$dispatcher->dispatch(new PreCreateEvent($user));
Note: When the PreCreateEvent is dispatched, UserListener will be automatically invoked if the event matches its type.
Example Use Case
Suppose you have a User entity that requires additional logic to be executed after being persisted to the database, such as sending a welcome email or logging activity. You can use the PreCreateEvent and UserListener to encapsulate this behavior, keeping your code clean and following the event-driven design pattern.
License
This library is licensed under the MIT License. See the LICENSE file for details.
michel/psr14-event-dispatcher 适用场景与选型建议
michel/psr14-event-dispatcher 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 12 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 michel/psr14-event-dispatcher 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 michel/psr14-event-dispatcher 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 16
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-12-15