You can install the latest version of blink-sentry by using Composer:
composer require blink/sentry
You can easily setup Sentry in your Blink application with the following two steps:
'sentry' => [
'class' => \blink\sentry\Sentry::class,
'dsn' => 'The dsn',
'environments' => ['prod'], // The environments that should report errors to Sentry
],
'errorHandler' => [
'class' => blink\sentry\ErrorHandler::class
],