symfony/mattermost-notifier

Symfony Mattermost Notifier 桥接器

安装次数: 54,681

依赖者: 2

建议者: 0

安全: 0

星标: 8

关注者: 5

分支: 4

类型:symfony-notifier-bridge


README

为 Symfony Notifier 提供 Mattermost 集成。

DSN 示例

MATTERMOST_DSN=mattermost://ACCESS_TOKEN@HOST/PATH?channel=CHANNEL_ID

其中

  • ACCESS_TOKEN 是你的 Mattermost 访问令牌
  • HOST 是你的 Mattermost 主机
  • PATH 是你的 Mattermost 子路径(可选)
  • CHANNEL_ID 是你的 Mattermost 默认频道 ID

使用方法

// to post to another channel
$options = new MattermostOptions();
$options->recipient('{channel_id}');

$message = (new ChatMessage($text))->options($options);

$chatter->send($message);

资源