wildan99 / yii2-telegram-log
Telegram 日志
dev-master
2017-12-18 08:48 UTC
Requires
- php: >=7.0.0
- yiisoft/yii2: ~2.0.0
- yiisoft/yii2-httpclient: ~2.0.0
This package is not auto-updated.
Last update: 2024-09-29 05:08:07 UTC
README
Telegram 日志
安装
安装此扩展的首选方法是通过Composer。
运行以下命令之一
php composer.phar require --prefer-dist wildan99/yii2-telegram-log "*"
或者在您的composer.json
文件的require部分添加
"wildan99/yii2-telegram-log": "*"
到
使用
'log' => [
'targets' => [
[
'class' => 'wildan99\yii2\log\TelegramTarget',
'levels' => ['error'],
'botToken' => '123456:abcde', // bot token secret key
'chatId' => '123456', // chat id or channel username with @ like 12345 or @channel
],
],
],