├── .env.example ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── examples ├── customized_usage.php ├── embed_usage.php └── simple_usage.php └── src ├── Config.php └── DiscordHandler.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/composer.json -------------------------------------------------------------------------------- /examples/customized_usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/examples/customized_usage.php -------------------------------------------------------------------------------- /examples/embed_usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/examples/embed_usage.php -------------------------------------------------------------------------------- /examples/simple_usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/examples/simple_usage.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/DiscordHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefuturiste/monolog-discord-handler/HEAD/src/DiscordHandler.php --------------------------------------------------------------------------------