jerryhsia / yii2-sentry
Sentry for yii2 framework
1.0.0
2017-03-15 08:02 UTC
Requires
- php: >=5.4.0
- sentry/sentry: 1.6.*
- yiisoft/yii2: *
Requires (Dev)
This package is not auto-updated.
Last update: 2025-04-26 23:50:37 UTC
README
Sentry client for yii framework.
Installation
composer require --prefer-dist "jerryhsia/yii2-sentry" "dev-master"
Usage
Configure it in the config/web.php
file.
'components' => [ 'errorHandler' => [ 'class' => 'jerryhsia\sentry\ErrorHandler', ], 'sentry' => [ 'class' => 'jerryhsia\sentry\Sentry', 'dsn' => 'your sentry dsn', 'options' => [ 'exclude' => [ 'yii\web\NotFoundHttpException', 'yii\web\UnauthorizedHttpException', 'yii\web\BadRequestHttpException', 'yii\web\GoneHttpException', 'yii\web\ForbiddenHttpException', 'yii\web\MethodNotAllowedHttpException' ] ] ] ]