wildan99 / yii2-telegram-log
Telegram Log
Installs: 291
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Type:yii2-extension
Requires
- php: >=7.0.0
- yiisoft/yii2: ~2.0.0
- yiisoft/yii2-httpclient: ~2.0.0
This package is not auto-updated.
Last update: 2025-01-05 06:40:19 UTC
README
Telegram Log
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist wildan99/yii2-telegram-log "*"
or add
"wildan99/yii2-telegram-log": "*"
to the require section of your composer.json
file.
Usage
'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
],
],
],