vxm/yii2-desktop-notifier

Yii2 桌面通知器

1.0.0 2019-04-10 17:31 UTC

This package is auto-updated.

Last update: 2024-09-17 05:34:51 UTC


README

Latest Stable Version Total Downloads Build Status Code Coverage Scrutinizer Code Quality Yii2

关于它

这是一个基于 JoliNotif 的 Yii2 控制台扩展,支持发送桌面通知。在 Linux、Windows 和 MacOS 上运行。

需求

安装

使用 Composer 安装 Yii2 桌面通知器

composer require vxm/yii2-desktop-notifier

使用方法

use yii\console\Controller;

/**
 * @method void desktopNotify(string $title, string $body, $icon = null)
 */
class TestController extends Controller
{
    public function actionTest()
    {
        $this->desktopNotify('VXM', 'test message');
    }
}