unixoff / monolog-discord
This package for sending logs of discord to a webhook channel.
v1.0.2
2024-11-04 17:53 UTC
Requires
- php: ^8.0
- ext-curl: *
- monolog/monolog: ^2.3
Requires (Dev)
- phpunit/phpunit: ^8
- vlucas/phpdotenv: ^5.4
README
This package for sending logs of discord to a webhook channel
Installation
composer require dev-null-group/monolog-discord
Usage
<?php require 'vendor/autoload.php'; use DevNullGroup\MonologDiscord\DiscordWebhookHandler; $webhook = 'Your Webhook URL'; $log = new Monolog\Logger('discord'); $log->pushHandler(new DiscordWebhookHandler($webhook)); $log->info('hello world!');
Symfony setting
monolog: handlers: main: ... discord_webhook_handler: type: service id: discord_webhook_handler services: discord_webhook_handler: class: MonologDiscord\DiscordWebhookHandler arguments: $webhookUrl: '%env(string:DISCORD_WEBHOOK)%'
License
See the LICENSE Apache License 2.0.