metalguardian / yii-ratchet-error-handler
Installs: 31
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:yii-extension
Requires
- rollbar/rollbar: ~0.9.9
- yiisoft/yii: *
This package is not auto-updated.
Last update: 2022-02-01 12:43:01 UTC
README
Error handler with handling php errors, exceptions,. fatal errors
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require metalguardian/yii-ratchet-error-handler "dev-master"
or add
"metalguardian/yii-ratchet-error-handler": "dev-master"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your configuration file :
array( 'preload' => array( // ... 'rollbar', // ... ), 'components' => array( 'rollbar' => array( 'class' => '\metalguardian\rollbar\Component', 'access_token' => 'ACCESS_TOKEN', 'environment' => 'production', 'included_errno' => E_ALL, ), 'errorHandler' => array( 'class' => '\metalguardian\rollbar\ErrorHandler', 'ignoreException' => function ($exception) { /** @var \CHttpException $exception */ // ignore 404 exceptions if ($exception instanceof \CHttpException && $exception->statusCode == 404) { return true; } // ignore 403 exceptions if ($exception instanceof \CHttpException && $exception->statusCode == 403) { return true; } // other ignores return false; }, ), ), // ... )