bugphix / bugphix-laravel
Capture and monitor detailed error logs with nice dashboard and UI.
Installs: 5 495
Dependents: 0
Suggesters: 0
Security: 0
Stars: 114
Watchers: 1
Forks: 11
Open Issues: 12
Language:HTML
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
- dev-master
- v1.5.4
- v1.5.3
- v1.5.2
- 1.5.1
- v1.5
- v1.4
- v1.3.1
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.1
- v1.0.0
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/qs-and-express-6.11.0
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-and-webpack-cli-1.4.2
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/async-2.6.4
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
This package is auto-updated.
Last update: 2025-05-05 13:52:59 UTC
README
Capture and monitor detailed error logs with nice dashboard and UI
Requirements
Installation
$ composer require bugphix/bugphix-laravel
Publish config files
$ php artisan vendor:publish --tag=bugphix-config
Run artisan installer
$ php artisan bugphix:install
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
View admin dashboard
http://localhost:8080/bugphix/issues
For full documentation: https://bugphix-docs.netlify.com
License
MIT
Copyright (c) 2020, Jeric