friendsofhyperf/notification
Composer 安装命令:
composer require friendsofhyperf/notification
包简介
The Notification for Hyperf.
关键字:
README 文档
README
Installation
composer require friendsofhyperf/notification
Usage
Model use Notifiable trait
<?php declare(strict_types=1); namespace App\Model; use FriendsOfHyperf\Notification\Traits\Notifiable; use Hyperf\DbConnection\Model\Model; /** * @property int $id * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at */ class User extends Model { use Notifiable; /** * The table associated with the model. */ protected ?string $table = 'user'; /** * The attributes that are mass assignable. */ protected array $fillable = ['id', 'created_at', 'updated_at']; /** * The attributes that should be cast to native types. */ protected array $casts = ['id' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime']; }
Database Notifications
# Install the database package composer require hyperf/database:~3.2.0 # Publish the migration file php bin/hyperf.php notification:table # Run the migration php bin/hyperf.php migrate # Create a notification php bin/hyperf.php gen:notification TestNotification
<?php namespace App\Notification; use FriendsOfHyperf\Notification\Notification; class TestNotification extends Notification { public function __construct( private string $message ){} public function via() { return [ // database channel 'database' ]; } public function toDatabase(mixed $notifiable): array { return [ 'message' => $this->message, ]; } }
// Your controller or service // 通知一条消息 $user->notify(new TestNotification('系统通知:xxx')); $noReadCount = $user->unreadNotifications()->count(); $this->output->success('发送成功,未读消息数:' . $noReadCount); $notifications = $user->unreadNotifications()->first(); $this->output->success('消息内容:' . $notifications->data['message']); $notifications->markAsRead(); $noReadCount = $user->unreadNotifications()->count(); $this->output->success('标记已读,未读消息数:' . $noReadCount);
SMS Notifications
Symfony Notifications
Send notifications using Symfony Notifier.
Email, SMS, Slack, Telegram, etc.
composer require symfony/notifier
composer require symfony/mailer
<?php // app/Factory/Notifier.php namespace App\Factory; use Hyperf\Contract\StdoutLoggerInterface; use Psr\EventDispatcher\EventDispatcherInterface; use Symfony\Component\Mailer\Transport; use Symfony\Component\Notifier\Channel\ChannelInterface; use Symfony\Component\Notifier\Channel\EmailChannel; use function Hyperf\Support\env; class Notifier { public function __construct( protected EventDispatcherInterface $dispatcher, protected StdoutLoggerInterface $logger, ) { } public function __invoke() { return new \Symfony\Component\Notifier\Notifier($this->channels()); } /** * @return ChannelInterface[] */ public function channels(): array { return [ 'email' => new EmailChannel( transport: Transport::fromDsn( // MAIL_DSN=smtp://user:password@localhost:1025 env('MAIL_DSN'), dispatcher: $this->dispatcher, logger: $this->logger ), from: 'root@imoi.cn' ), ]; } }
<?php // app/Notification/TestNotification.php namespace App\Notification; use App\Model\User; use FriendsOfHyperf\Notification\Notification; use Symfony\Component\Notifier\Recipient\Recipient; class TestNotification extends Notification { public function __construct( private string $message ){} public function via() { return [ 'symfony' ]; } public function toSymfony(User $user) { return (new \Symfony\Component\Notifier\Notification\Notification($this->message,['email']))->content('The introduction to the notification.'); } public function toRecipient(User $user) { return new Recipient('2771717608@qq.com'); } }
<?php // config/autoload/dependencies.php declare(strict_types=1); /** * This file is part of Hyperf. * * @link https://www.hyperf.io * @document https://hyperf.wiki * @contact group@hyperf.io * @license https://github.com/hyperf/hyperf/blob/master/LICENSE */ return [ \Symfony\Component\Notifier\NotifierInterface::class => \App\Factory\Notifier::class ];
Usage in controller
$user = User::create(); // 通知一条消息 $user->notify(new TestNotification('系统通知:xxx'));
friendsofhyperf/notification 适用场景与选型建议
friendsofhyperf/notification 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4.83k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2024 年 05 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「notification」 「hyperf」 「v3.2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 friendsofhyperf/notification 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 friendsofhyperf/notification 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 friendsofhyperf/notification 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
This package makes it easy to send notifications via AfricasTalking with Laravel
The model morph addon for Hyperf.
The MySqlGrammar addon for Hyperf.
The Data Transfer Objects with validation for Hyperf.
An async event for hyperf.
An elegant debug assistant for the hyperf framework.
统计信息
- 总下载量: 4.83k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 5
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-23