├── .github └── workflows │ └── ci.yml ├── .php-cs-fixer.dist.php ├── LICENSE ├── UPGRADE-2.x.md ├── composer.json ├── phpstan.neon.dist └── src └── SentryHandler.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Galati/monolog-sentry-handler/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Galati/monolog-sentry-handler/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Galati/monolog-sentry-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /UPGRADE-2.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Galati/monolog-sentry-handler/HEAD/UPGRADE-2.x.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Galati/monolog-sentry-handler/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Galati/monolog-sentry-handler/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/SentryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Galati/monolog-sentry-handler/HEAD/src/SentryHandler.php --------------------------------------------------------------------------------