PHPackages                             pixel-penguin/laravel-lekkerflow - 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. pixel-penguin/laravel-lekkerflow

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

pixel-penguin/laravel-lekkerflow
================================

Ship Laravel application errors to the LekkerFlow error webhook as a Monolog log channel.

v1.0.0(yesterday)025↑2660%MITPHPPHP ^8.2

Since Jun 22Pushed yesterdayCompare

[ Source](https://github.com/PixelPenguinAI/lekkerflow-laravel)[ Packagist](https://packagist.org/packages/pixel-penguin/laravel-lekkerflow)[ Docs](https://github.com/PixelPenguinAI/lekkerflow-laravel)[ RSS](/packages/pixel-penguin-laravel-lekkerflow/feed)WikiDiscussions main Synced today

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

Laravel LekkerFlow
==================

[](#laravel-lekkerflow)

Ship Laravel application errors to the [LekkerFlow](https://lekkerflow.com) error webhook as a Monolog log channel.

Anything your app logs at `error` level or above (including unhandled exceptions reported by Laravel) is POSTed to LekkerFlow, where identical errors are collapsed into a single counted issue.

Installation
------------

[](#installation)

```
composer require pixel-penguin/laravel-lekkerflow
```

The service provider is auto-discovered. It registers a `lekkerflow` log channel for you — you do **not** need to edit `config/logging.php`.

Configuration
-------------

[](#configuration)

Add the channel to your logging stack and set your token:

```
LOG_STACK=single,lekkerflow

LEKKERFLOW_ERROR_WEBHOOK_TOKEN=your-webhook-token
# Optional overrides:
# LEKKERFLOW_ERROR_WEBHOOK_URL=https://lekkerflow.com/api/error-webhook/capture
# LEKKERFLOW_LOG_LEVEL=error
# LEKKERFLOW_ENVIRONMENT=staging   # defaults to APP_ENV
# LEKKERFLOW_RELEASE=              # app version / git sha
# LEKKERFLOW_TIMEOUT=5
```

When the token is empty the channel is a **no-op**, so it is safe to leave `lekkerflow` in your stack on environments that should not report (e.g. local).

To customise further, publish the config:

```
php artisan vendor:publish --tag=lekkerflow-config
```

How it works
------------

[](#how-it-works)

The channel maps each log record to the LekkerFlow payload:

LekkerFlow fieldSource`message`The log message`level`Monolog level → `critical | error | warning | info | debug``exception_class`, `file`, `line`, `stack_trace`From `context['exception']` when an exception is logged`url`From `context['url']` when present`context`Any remaining log context`environment``LEKKERFLOW_ENVIRONMENT`, falling back to `APP_ENV``release``LEKKERFLOW_RELEASE`Reporting failures (timeout, DNS, 5xx) are swallowed so the webhook can never mask or replace the original application error.

### Reporting manually

[](#reporting-manually)

```
use Illuminate\Support\Facades\Log;

Log::channel('lekkerflow')->error('Payment gateway timed out', [
    'url' => request()->fullUrl(),
    'order_id' => $order->id,
]);
```

Testing
-------

[](#testing)

```
composer install
composer test
```

Releasing
---------

[](#releasing)

`release.sh` bumps the semver tag and pushes it; Packagist picks it up via its GitHub webhook.

```
./release.sh         # patch: v1.2.3 -> v1.2.4
./release.sh minor   # minor: v1.2.3 -> v1.3.0
./release.sh major   # major: v1.2.3 -> v2.0.0
```

License
-------

[](#license)

MIT

###  Health Score

42

—

FairBetter than 89% of packages

Maintenance100

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity45

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

Unknown

Total

1

Last Release

1d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6652d6e37f0733f4e83a450fa8e53ec07c6a61dd19b468bc64ad572338803a6a?d=identicon)[PixelPenguin](/maintainers/PixelPenguin)

---

Top Contributors

[![pixel-penguin](https://avatars.githubusercontent.com/u/8964456?v=4)](https://github.com/pixel-penguin "pixel-penguin (2 commits)")

---

Tags

laravelloggingwebhookmonologerror-trackinglekkerflow

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/pixel-penguin-laravel-lekkerflow/health.svg)

```
[![Health](https://phpackages.com/badges/pixel-penguin-laravel-lekkerflow/health.svg)](https://phpackages.com/packages/pixel-penguin-laravel-lekkerflow)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[naoray/laravel-github-monolog

Log driver to store logs as github issues

10822.5k](/packages/naoray-laravel-github-monolog)[onlime/laravel-http-client-global-logger

A global logger for the Laravel HTTP Client

2037.5k](/packages/onlime-laravel-http-client-global-logger)

PHPackages © 2026

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