PHPackages                             lukeboy25/errorlogger - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. lukeboy25/errorlogger

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

lukeboy25/errorlogger
=====================

A package that sends all errors.

1.2.2(7y ago)12.6kMITPHPPHP &gt;=5.6.0

Since May 22Pushed 7y ago1 watchersCompare

[ Source](https://github.com/Lukeboy25/errorLogger)[ Packagist](https://packagist.org/packages/lukeboy25/errorlogger)[ RSS](/packages/lukeboy25-errorlogger/feed)WikiDiscussions development Synced 2d ago

READMEChangelogDependencies (2)Versions (7)Used By (0)

errorLogger
===========

[](#errorlogger)

You can install the package through Composer.

```
composer require lukeboy25/errorlogger

```

*In case of Laravel 5.5, you still need to manually register this as the service provider has to be the first provider that needs to be registered.*

You must install this service provider and add this to your app.php:

```
// config/app.php
'providers' => [
    // Add this to your other providers
    ErrorLogger\ErrorLoggerServiceProvider::class,

    //...
    //...
];

```

Then publish the config and migration file of the package using artisan.

```
php artisan vendor:publish --provider="ErrorLogger\ErrorLoggerServiceProvider"

```

And adjust config file (config/errorlogger.php) with your desired settings.

Add to your Exception Handler's (/app/Exceptions/Handler.php by default) report method these line and add the use line:

```
public function report(Exception $e)
{
    if ($this->shouldReport($exception) && class_exists(\ErrorLogger\ErrorLogger::class)) {
        app('errorlogger')->handle($exception);
    }

    return parent::report($e);
}

```

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~6 days

Total

5

Last Release

2570d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b8c5cd35a5f8891258871b73256ec7771a7467a414243c080504cf3e7760b956?d=identicon)[Lukeboy25](/maintainers/Lukeboy25)

---

Top Contributors

[![Lukeboy25](https://avatars.githubusercontent.com/u/19424714?v=4)](https://github.com/Lukeboy25 "Lukeboy25 (51 commits)")

### Embed Badge

![Health badge](/badges/lukeboy25-errorlogger/health.svg)

```
[![Health](https://phpackages.com/badges/lukeboy25-errorlogger/health.svg)](https://phpackages.com/packages/lukeboy25-errorlogger)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.2k532.1M2.5k](/packages/aws-aws-sdk-php)[unopim/unopim

UnoPim Laravel PIM

10.5k2.2k](/packages/unopim-unopim)[spatie/laravel-health

Monitor the health of a Laravel application

87411.3M154](/packages/spatie-laravel-health)[spatie/flare-client-php

Send PHP errors to Flare

177156.9M21](/packages/spatie-flare-client-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k496.1k33](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
