jerryhsia / yii2-sentry
yii2框架的Sentry工具
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: 2024-09-28 20:45:58 UTC
README
yii框架的Sentry客户端。
安装
使用composer命令安装:composer require --prefer-dist "jerryhsia/yii2-sentry" "dev-master"
使用方法
在config/web.php文件中进行配置。
'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' ] ] ] ]