PHP code example of jerryhsia / yii2-sentry
1. Go to this page and download the library: Download jerryhsia/yii2-sentry library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jerryhsia / yii2-sentry example snippets
'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'
]
]
]
]