marcopollacci / mezzio-sentrydelegator
Utility to connect Mezzio to Sentry
1.0.1
2020-01-19 10:29 UTC
Requires
- php: ^7.3
- sentry/sdk: ^2.0
This package is auto-updated.
Last update: 2025-03-19 22:01:32 UTC
README
Sentry Delegator for Mezzio - Lamisas Framework
Install by Composer
composer require marcopollacci/mezzio-sentrydelegator
Usage
- Set at your config file with sentry token and dsn (if no config given, no exception send to sentry). Es:
return [ 'sentry' => [ 'dsn' => 'https://<your url>>/<your id>', 'environment' => 'produzione' #optional ] ];
- Enjoy it :D!
Additional usage in try / catch statament
Code Example
try { throw new \Exception('something'); }catch(\Exception $e){ \Sentry\captureException($e); /* something else you want */ }