jerryhsia/yii2-sentry

Sentry for yii2 framework

1.0.0 2017-03-15 08:02 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:59:07 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'
            ]
        ]
    ]
]