gordonzero / monolog-telegram
Laravel 5.6 Monolog custom telegram channel
Installs: 6 561
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.1.3
- irazasyed/telegram-bot-sdk: ^3.0
This package is auto-updated.
Last update: 2025-04-11 15:55:41 UTC
README
This package will sends an message Via Telegram to a spedified group or user speicifed by the LOG_TELEGRAM_CHAT_ID
.
Installation
composer require gordonzero/monolog-telegram
Open up config/logging.php
and find the channels
key. Add the following channel to the list.
'telegram' => [
'driver' => 'custom',
'via'=> \Logger\TelegramLogger::class,
'botKey' => env('LOG_TELEGRAM_BOT_ID'),
'chatId' => env('LOG_TELEGRAM_CHAT_ID'),
],
Add the following information to your .env
file. Your LOG_TELEGRAM_BOT_ID
is for the your bot key and LOG_TELEGRAM_CHAT_ID
is the chat ID for a telegram user or channel.
LOG_TELEGRAM_BOT_ID=123456789:ABCDEFGHIJKLMNOPQUSTUFWXYZabcdefghi
LOG_TELEGRAM_CHAT_ID=12345678
This package contains a blank Service Provider. This is only to let you know that the package is detected and working properly.
Side Notes
Currently it does not have any built in methods for figuring out what your CHAT_ID
is. This may come in a future version or you can check around for posts that tell you how to find this ID number.