Skip to content

Commit

Permalink
feat: removed honeybadger and added flare
Browse files Browse the repository at this point in the history
  • Loading branch information
lewislarsen committed Jun 24, 2024
1 parent ff593ef commit ee20ba4
Show file tree
Hide file tree
Showing 6 changed files with 416 additions and 315 deletions.
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ MAIL_FROM_ADDRESS="[email protected]"
### HORIZON ###
HORIZON_TOKEN= # Used for displaying Horizon inside Ploi.

### HONEYBADGER ###
HONEYBADGER_API_KEY=
### FLARE ###
FLARE_KEY=hPSaRi0s1xCBddUYHsFjjUwTDVHAKn5m

### ADMINS ###
ADMIN_EMAIL_ADDRESSES= # Comma separated list of email addresses.
Expand Down
6 changes: 1 addition & 5 deletions bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,5 @@
//
})
->withExceptions(function (Exceptions $exceptions) {
$exceptions->reportable(static function (Throwable $e) {
if (app()->bound('honeybadger')) {
app('honeybadger')->notify($e, app('request'));
}
});
Flare::handles($exceptions);
})->create();
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"php": "^8.2",
"blade-ui-kit/blade-heroicons": "^2.3",
"diglactic/laravel-breadcrumbs": "^9.0",
"honeybadger-io/honeybadger-laravel": "^4.0",
"laravel/framework": "^11.9",
"laravel/horizon": "^5.24",
"laravel/pail": "^1.1",
Expand All @@ -20,7 +19,8 @@
"livewire/livewire": "^3.4",
"livewire/volt": "^1.0",
"masmerise/livewire-toaster": "^2.2",
"phpseclib/phpseclib": "~3.0"
"phpseclib/phpseclib": "~3.0",
"spatie/laravel-flare": "^1.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.13",
Expand Down
Loading

0 comments on commit ee20ba4

Please sign in to comment.