coolin/slack-messenger
最新稳定版本:1.0.1
Composer 安装命令:
composer require coolin/slack-messenger
包简介
Library for logging erros and sending messages to Slack
关键字:
README 文档
README
This Nette extension package allows you to log your errors and send messages to Slack.
Instalation
- Download
composer require coolin/slack-messenger
- Registration
extensions: slackMessenger: Coolin\SlackMessenger\SlackExtension
- Minimal configuration
slackMessenger: hook: 'YOUR_SLACK_WEBHOOK' channel: '#general'
Configuration
Package contains two services. Messenger and Logger. Both of them can be configured by global settings or, they can have specific configuration. If you use global and specific settings at once, specific setings will be always used.
slackMessenger: hook: 'YOUR_SLACK_WEBHOOK' channel: '#globalChannel' timeout: 30 name: 'Slack Bot' title: 'globalTitle' color: 'globalColor' icon: 'globalIcon' messenger: enable: true channel: '#messengerChannel' name: 'Slack Bot' title: 'messengerTitle' color: 'messengerColor' icon: 'messengerIcon' logger: enable: false channel: '#loggerChannel' name: 'Slack Bot' title: 'loggerTitle' color: 'loggerColor' icon: 'loggerIcon'
Messenger
for sending messages from aplication you have to inject Messenger first. You can do in only if you have enabled Messenger in config.neon
/** @var \Coolin\SlackMessenger\Messenger @inject*/ public $slack; public function send(){ //variant 1 $this->slack->send('Your Message'); //variant 2 $message = new \Coolin\SlackMessenger\Message(); $message->setChannel('#general'); $message->setName('Awesome Bot'); $message->setText('I\'m alive!'); $this->slack->sendMessage($message); $this->slack->sendMessage($message, null, self::ALT_SLACK_HOOK); // ignore Slack hook from config and use specific one }
In both variants, if you omit some setting, default setting from config.neon will be used instead.
Formatting
Class Coolin\SlackMessenger\Formater contains basic functions for text formatting.
$message->setText('Normal text ' . Formatter::bold('bold text'));
统计信息
- 总下载量: 25.13k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-12-13