News

The error management app Honey Badger now supports PHP

Published
The error management app Honey Badger now supports PHP image

Honey Badger, the error management and exception notifier app, has announced an official PHP library for integration with their service.

The official client is available on GitHub and it supports PHP > 5.5. The documentation includes instructions for hooking into Laravel, but it’s for version 4.2. For Laravel 5.3 you will need to modify the app/Exceptions/Handler.php file and call the notify method from the report method:

use Honeybadger\Honeybadger;
 
public function report(Exception $e)
{
Honeybadger::notify($e);
}

Honey Badger is a commercial service and they offer a free plan for non-commercial open-source projects.

Eric L. Barnes photo

Eric is the creator of Laravel News and has been covering Laravel since 2012.

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article
Statamic Mailables Viewer Previews Laravel Emails in the Control Panel image

Statamic Mailables Viewer Previews Laravel Emails in the Control Panel

Read article
Laravel Tackle: Run an AI Coding Agent in Your Laravel App image

Laravel Tackle: Run an AI Coding Agent in Your Laravel App

Read article
Queue::forward(): Reroute Laravel Queues in One Place image

Queue::forward(): Reroute Laravel Queues in One Place

Read article
Laravel Read-Through Filesystem: Lazy Storage Migration image

Laravel Read-Through Filesystem: Lazy Storage Migration

Read article