oleg-chulakov-studio / yii2-sentry
Yii2 component for Sentry
Package info
github.com/OlegChulakovStudio/yii2-sentry
Type:yii2-components
pkg:composer/oleg-chulakov-studio/yii2-sentry
1.0.1
2017-07-12 15:34 UTC
Requires
- php: >=5.4.0
- sentry/sentry: ^1.6
This package is auto-updated.
Last update: 2026-03-20 04:02:31 UTC
README
Install by composer
composer require oleg-chulakov-studio/yii2-sentry
Or add this code into require section of your composer.json and then call composer update in console
"oleg-chulakov-studio/yii2-sentry": "*"
Usage
In configuration file for web do
<?php 'components' => [ 'errorHandler' => [ 'class' => \OlegChulakovStudio\sentry\SentryErrorWebHandler::className(), 'mode' => YII_DEBUG, 'errorAction' => '/system/error', 'sentry' => [ 'class' => OlegChulakovStudio\sentry\SentryComponent::className(), 'url' => 'dsn' ], ] ] ?>
In configuration file for console do
<?php 'components' => [ 'errorHandler' => [ 'class' => \OlegChulakovStudio\sentry\SentryErrorConsoleHandler::className(), 'mode' => YII_DEBUG, 'sentry' => [ 'class' => OlegChulakovStudio\sentry\SentryComponent::className(), 'url' => 'dsn' ], ] ] ?>