PHPackages                             flyingluscas/laker - 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. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. flyingluscas/laker

Abandoned → [flyingluscas/bug-notifier](/?search=flyingluscas%2Fbug-notifier)Library[Debugging &amp; Profiling](/categories/debugging)

flyingluscas/laker
==================

Laravel package to track down bugs.

v0.4.0(9y ago)10265MITPHPPHP ~5.6|~7.0

Since Sep 11Pushed 9y agoCompare

[ Source](https://github.com/flyingluscas/laker)[ Packagist](https://packagist.org/packages/flyingluscas/laker)[ Docs](https://github.com/flyingluscas/laker)[ RSS](/packages/flyingluscas-laker/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (4)Dependencies (6)Versions (6)Used By (0)

Laker
=====

[](#laker)

[![Latest Version on Packagist](https://camo.githubusercontent.com/282a81ba2a85fc1ff5a1e4e2c9fe0f62cf177f3b67f2d427233e337b3bcad196/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666c79696e676c75736361732f6c616b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/flyingluscas/laker)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![StyleCI](https://camo.githubusercontent.com/68bed4b672053e0ee227e339b8053b09d99187923d73a957640da630765445de/68747470733a2f2f7374796c6563692e696f2f7265706f732f36373734373732312f736869656c64)](https://styleci.io/repos/67747721)[![Build Status](https://camo.githubusercontent.com/9d23548a3ad74df25c759473e185d5bedf32f68e661a596e2baf2cda3af84d61/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f666c79696e676c75736361732f6c616b65722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/flyingluscas/laker)[![Quality Score](https://camo.githubusercontent.com/0c3f1686e1c492d2ae3708e95edd42c03feaa4e99b4797fd008f994871d38ee1/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f666c79696e676c75736361732f6c616b65722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/flyingluscas/laker)[![Total Downloads](https://camo.githubusercontent.com/891a97bfeac83d647230c67e582ac521c57dccce27fc4e7b2f9ec1c2030562fe/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f666c79696e676c75736361732f6c616b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/flyingluscas/laker)

**ATTENTION:** This package is no longer maintained, please see the new [BugNotifier](https://github.com/flyingluscas/Laravel-BugNotifier) package.

Laker is a **Laravel 5.2/5.3** package to help you track down bugs.

Laker catches all **exceptions** fired by Laravel and saves them on **Bitbucket** as **issues**.

Install
-------

[](#install)

Via Composer

```
$ composer require flyingluscas/laker
```

Usage
-----

[](#usage)

### 1. Service Provider

[](#1-service-provider)

First thing you need to do is to add the `LakerServiceProvider` under the `providers` section on `config/app.php`

```
'providers' => [

    // ...

    FlyingLuscas\Laker\LakerServiceProvider::class,

],
```

### 2. Configuration

[](#2-configuration)

Ok, now that our service provider is in place, we need to set up our configurarion file, run.

```
$ php artisan vendor:publish --provider="FlyingLuscas\Laker\LakerServiceProvider"
```

The command above will generate the `config/laker.php` file.

OptionDescriptionaccount\_slugThe slug of your account or team on Bitbucket.repository\_slugThe slug of your repository on Bitbucket.authYour **username** and **password** from Bitbucket.### 3. Sending Issues

[](#3-sending-issues)

All Laravel exceptions can be intercepted through the `app/Exceptions/Handler.php` file.

On this file, go to the `report` method and add this on the top.

```
use FlyingLuscas\Laker\Issue;
use FlyingLuscas\Laker\Services\Bitbucket;

public function report(Exception $exception)
{
    $issue = new Issue($exception);
    $bitbucket = new Bitbucket;

    $issue->createOn($bitbucket);

    parent::report($exception);
}
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Lucas Pires](https://github.com/flyingluscas)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

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

Total

4

Last Release

3578d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8ba942efed17b9d3243112edc08235c3cd082729ab59397e6f9b12acd126f204?d=identicon)[flyingluscas](/maintainers/flyingluscas)

---

Top Contributors

[![flyingluscas](https://avatars.githubusercontent.com/u/6232791?v=4)](https://github.com/flyingluscas "flyingluscas (28 commits)")

---

Tags

bitbucketflyingluscasissuebugslaker

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/flyingluscas-laker/health.svg)

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

###  Alternatives

[barryvdh/laravel-debugbar

PHP Debugbar integration for Laravel

19.3k130.0M722](/packages/barryvdh-laravel-debugbar)[fruitcake/laravel-debugbar

PHP Debugbar integration for Laravel

19.3k2.3M57](/packages/fruitcake-laravel-debugbar)

PHPackages © 2026

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