hpsweb / bugphix-laravel-sdk
Capture and monitor detailed error logs with nice dashboard and UI.
dev-master
2020-05-16 20:34 UTC
Requires
- php: >=7.0.0
- guzzlehttp/guzzle: ^6.3|^7.0
Requires (Dev)
- laravel/laravel: ~6.0
- orchestra/testbench: ^4.0
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2025-03-17 07:05:35 UTC
README
Capture and monitor detailed error logs with nice dashboard and UI
Requirements
Installation
$ composer require hpsweb/bugphix-laravel-sdk
Application usage
edit: /app/Exceptions/Handler.php
public function report(Exception $exception)
{
if (app()->bound('bugphix') && $this->shouldReport($exception)) {
app('bugphix')->catchError($exception);
}
parent::report($exception);
}
Test Command
$ php artisan bugphix:test