PHPackages                             dennissmink/lara-bug - 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. dennissmink/lara-bug

Abandoned → [larabug/larabug](/?search=larabug%2Flarabug)Library[Logging &amp; Monitoring](/categories/logging)

dennissmink/lara-bug
====================

Laravel 6.x/7.x/8.x/9.x/10.x/11.x/12.x bug notifier

3.5.1(3mo ago)29916563[2 issues](https://github.com/LaraBug/LaraBug/issues)MITPHPPHP ^7.4 || ^8.0 || ^8.2 || ^8.3 || ^8.4CI passing

Since Nov 3Pushed 3mo ago9 watchersCompare

[ Source](https://github.com/LaraBug/LaraBug)[ Packagist](https://packagist.org/packages/dennissmink/lara-bug)[ RSS](/packages/dennissmink-lara-bug/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (7)Versions (51)Used By (0)

 [![](https://camo.githubusercontent.com/8e4cd2f95ffce5a4b4c40cc706da08644473f9ad70ddce95bdd531c50a898819/68747470733a2f2f7777772e6c6172616275672e636f6d2f696d616765732f6c6172616275672d6c6f676f2d736d616c6c2e706e67)](https://www.larabug.com)

LaraBug
=======

[](#larabug)

Laravel 6.x/7.x/8.x/9.x/10.x/11.x/12.x package for logging errors to [larabug.com](https://www.larabug.com)

[![Software License](https://camo.githubusercontent.com/a67f84da0101fd15f26280e1f30cc8e20abc7cf6230b045261aca90440b72fa1/68747470733a2f2f706f7365722e707567782e6f72672f6c6172616275672f6c6172616275672f6c6963656e73652e737667)](LICENSE.md)[![Latest Version on Packagist](https://camo.githubusercontent.com/12b95e9095cbf974674ec0e12f4a1a6acc51058d1d2577afa45decd2de84445d/68747470733a2f2f706f7365722e707567782e6f72672f6c6172616275672f6c6172616275672f762f737461626c652e737667)](https://packagist.org/packages/larabug/larabug)[![Build Status](https://github.com/larabug/larabug/workflows/tests/badge.svg)](https://github.com/larabug/larabug/actions)[![Total Downloads](https://camo.githubusercontent.com/e90d73b03ce52de88d610d874d0c49cc2cf8f7101c6b0ede9bdae870735e8f4f/68747470733a2f2f706f7365722e707567782e6f72672f6c6172616275672f6c6172616275672f642f746f74616c2e737667)](https://packagist.org/packages/larabug/larabug)

Installation on laravel
-----------------------

[](#installation-on-laravel)

You can install the package through Composer.

```
composer require larabug/larabug
```

Then publish the config and migration file of the package using the vendor publish command.

```
php artisan vendor:publish --provider="LaraBug\ServiceProvider"
```

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

Note: by default only production environments will report errors. To modify this edit your LaraBug configuration.

Installation on lumen
---------------------

[](#installation-on-lumen)

You can install the package through Composer.

```
composer require larabug/larabug
```

Copy the config file (`larabug.php`) to lumen config directory.

```
php -r "file_exists('config/') || mkdir('config/'); copy('vendor/larabug/larabug/config/larabug.php', 'config/larabug.php');"
```

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

In `bootstrap/app.php` you will need to:

- Uncomment this line: ```
    $app->withFacades();
    ```
- Register the larabug config file: ```
    $app->configure('larabug');
    ```
- Register larabug service provider: ```
    $app->register(LaraBug\ServiceProvider::class);
    ```

Configuration variables
-----------------------

[](#configuration-variables)

All that is left to do is to define two env configuration variables.

```
LB_KEY=
LB_PROJECT_KEY=

```

`LB_KEY` is your profile key which authorises your account to the API.

`LB_PROJECT_KEY` is your project API key which you've received when creating a project.

Get the variables at [larabug.com](https://www.larabug.com)

Reporting unhandled exceptions
------------------------------

[](#reporting-unhandled-exceptions)

You can use LaraBug as a log-channel by adding the following config to the `channels` section in `config/logging.php`:

```
'channels' => [
    // ...
    'larabug' => [
        'driver' => 'larabug',
    ],
],
```

After that you can add it to the stack section:

```
'channels' => [
    'stack' => [
        'driver' => 'stack',
        'channels' => ['single', 'larabug'],
    ],
    //...
],
```

PS: If you're using lumen, it could be that you don't have the `logging.php` file. So, you can use default logging file from framework core and make changes above.

```
php -r "file_exists('config/') || mkdir('config/'); copy('vendor/laravel/lumen-framework/config/logging.php', 'config/logging.php');"
```

License
-------

[](#license)

The LaraBug package is open source software licensed under the [license MIT](http://opensource.org/licenses/MIT)

###  Health Score

64

—

FairBetter than 99% of packages

Maintenance86

Actively maintained with recent releases

Popularity32

Limited adoption so far

Community28

Small or concentrated contributor base

Maturity94

Battle-tested with a long release history

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~80 days

Total

43

Last Release

101d ago

Major Versions

1.4.2 → 2.02020-02-18

2.5.3 → 3.02023-02-20

PHP version history (6 changes)1.0PHP &gt;=7.0.0

1.0.3PHP &gt;=5.6.0

1.3.1PHP &gt;=7.1.3

2.4.3PHP ^7.2.5|^8.0

2.5PHP ^7.4 || ^8.0

3.2PHP ^7.4 || ^8.0 || ^8.2 || ^8.3 || ^8.4

### Community

Maintainers

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

---

Top Contributors

[![Cannonb4ll](https://avatars.githubusercontent.com/u/3110750?v=4)](https://github.com/Cannonb4ll "Cannonb4ll (126 commits)")[![NathanGeerinck](https://avatars.githubusercontent.com/u/9437467?v=4)](https://github.com/NathanGeerinck "NathanGeerinck (50 commits)")[![nickurt](https://avatars.githubusercontent.com/u/5840084?v=4)](https://github.com/nickurt "nickurt (23 commits)")[![xHeinrich](https://avatars.githubusercontent.com/u/7674587?v=4)](https://github.com/xHeinrich "xHeinrich (13 commits)")[![Glennmen](https://avatars.githubusercontent.com/u/11406433?v=4)](https://github.com/Glennmen "Glennmen (12 commits)")[![SebastiaanKloos](https://avatars.githubusercontent.com/u/6506510?v=4)](https://github.com/SebastiaanKloos "SebastiaanKloos (11 commits)")[![jrmajor](https://avatars.githubusercontent.com/u/26096713?v=4)](https://github.com/jrmajor "jrmajor (10 commits)")[![cbl](https://avatars.githubusercontent.com/u/29352871?v=4)](https://github.com/cbl "cbl (7 commits)")[![mateussantana](https://avatars.githubusercontent.com/u/3890594?v=4)](https://github.com/mateussantana "mateussantana (4 commits)")[![RohanSakhale](https://avatars.githubusercontent.com/u/2164321?v=4)](https://github.com/RohanSakhale "RohanSakhale (4 commits)")[![mikemand](https://avatars.githubusercontent.com/u/745184?v=4)](https://github.com/mikemand "mikemand (2 commits)")[![pauloimon](https://avatars.githubusercontent.com/u/3463932?v=4)](https://github.com/pauloimon "pauloimon (2 commits)")[![Larsklopstra](https://avatars.githubusercontent.com/u/25669876?v=4)](https://github.com/Larsklopstra "Larsklopstra (2 commits)")[![paulhennell](https://avatars.githubusercontent.com/u/4799852?v=4)](https://github.com/paulhennell "paulhennell (1 commits)")[![Melcus](https://avatars.githubusercontent.com/u/6652134?v=4)](https://github.com/Melcus "Melcus (1 commits)")[![grantholle](https://avatars.githubusercontent.com/u/1189456?v=4)](https://github.com/grantholle "grantholle (1 commits)")[![HajMo](https://avatars.githubusercontent.com/u/50548630?v=4)](https://github.com/HajMo "HajMo (1 commits)")[![sinnbeck](https://avatars.githubusercontent.com/u/13980140?v=4)](https://github.com/sinnbeck "sinnbeck (1 commits)")[![Taronyuu](https://avatars.githubusercontent.com/u/7033142?v=4)](https://github.com/Taronyuu "Taronyuu (1 commits)")[![trippo](https://avatars.githubusercontent.com/u/497169?v=4)](https://github.com/trippo "trippo (1 commits)")

---

Tags

bugbug-trackerexception-handlingexception-toolexceptionshacktoberfestlaravel-5-packagelaravel-packagephploglaravelerror

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/dennissmink-lara-bug/health.svg)

```
[![Health](https://phpackages.com/badges/dennissmink-lara-bug/health.svg)](https://phpackages.com/packages/dennissmink-lara-bug)
```

###  Alternatives

[larabug/larabug

Laravel 6.x/7.x/8.x/9.x/10.x/11.x/12.x/13.x bug notifier

299549.3k1](/packages/larabug-larabug)[spatie/laravel-health

Monitor the health of a Laravel application

85810.0M83](/packages/spatie-laravel-health)[masterro/laravel-mail-viewer

Easily view in browser outgoing emails.

6392.1k](/packages/masterro-laravel-mail-viewer)[jackiedo/log-reader

An easy log reader and management tool for Laravel

151376.5k4](/packages/jackiedo-log-reader)[guanguans/laravel-exception-notify

Monitor exception and report to the notification channels(Log、Mail、AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、ZohoCliq、ZohoCliqWebHook、Zulip).

14642.7k1](/packages/guanguans-laravel-exception-notify)[yaro/log-envelope

Laravel 5 email on error

4147.0k](/packages/yaro-log-envelope)

PHPackages © 2026

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