PHPackages                             rustem-kaimolla/laravel-exception-reporter - 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. rustem-kaimolla/laravel-exception-reporter

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

rustem-kaimolla/laravel-exception-reporter
==========================================

Laravel package to report exceptions via TCP

338PHP

Since Aug 7Pushed 9mo agoCompare

[ Source](https://github.com/rustem-kaimolla/laravel-exception-reporter)[ Packagist](https://packagist.org/packages/rustem-kaimolla/laravel-exception-reporter)[ RSS](/packages/rustem-kaimolla-laravel-exception-reporter/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Exception Reporter LLM + Jira
=====================================

[](#laravel-exception-reporter-llm--jira)

[![Laravel Exception Reporter](https://raw.githubusercontent.com/rustem-kaimolla/laravel-exception-reporter/main/cmd.png)](https://raw.githubusercontent.com/rustem-kaimolla/laravel-exception-reporter/main/cmd.png)

LLM exception analysis and automatic creation of incident as bug in Jira

[![Total Downloads](https://camo.githubusercontent.com/33989969ff1829e0ea2a4e8efa2268dec4e58703c0937f14b47af26f7c0f2c36/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72757374656d2d6b61696d6f6c6c612f6c61726176656c2d657863657074696f6e2d7265706f727465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rustem-kaimolla/laravel-exception-reporter)

A simple exception reporting agent for Laravel applications that sends exceptions to a remote Exception Reporter Agent service .

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

[](#installation)

Install via Composer:

```
composer require rustem-kaimolla/laravel-exception-reporter
```

Publish the config file:

```
php artisan vendor:publish --tag=exception-reporter-config
```

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

[](#configuration)

After publishing, configure the following values in your `.env` file:

```
EXCEPTION_REPORTER_ENABLED=true
EXCEPTION_TCP_HOST=127.0.0.1
EXCEPTION_TCP_PORT=9000
```

Or configure directly in `config/exception-reporter.php`:

```
return [
    'enabled' => env('EXCEPTION_REPORTER_ENABLED', true),
    'endpoint' => env('EXCEPTION_REPORTER_ENDPOINT'),
    'token' => env('EXCEPTION_REPORTER_TOKEN'),
];
```

Usage
-----

[](#usage)

To report exceptions to the agent, you must manually call the reporter in your `App\Exceptions\Handler`:

```
use Throwable;
use ExceptionReporter;

public function report(Throwable $exception)
{
    ExceptionReporter::report($exception); // Send exception to the agent
    parent::report($exception); // Continue Laravel's default reporting
}
```

Advanced Integration (Optional)
-------------------------------

[](#advanced-integration-optional)

If you want automatic reporting without modifying your exception handler, you can:

1. Create a custom `ExceptionHandler` and bind it in the service container:

```
app()->singleton(
    \Illuminate\Contracts\Debug\ExceptionHandler::class,
    \App\Exceptions\CustomHandler::class
);
```

2. Subscribe to Laravel's internal exception events:

```
use Illuminate\Foundation\Exceptions\Events\ExceptionOccurred;
use Illuminate\Support\Facades\Event;
use ExceptionReporter;

Event::listen(ExceptionOccurred::class, function ($event) {
    ExceptionReporter::report($event->exception);
});
```

> Note: For production use, it's recommended to use the manual `report()` override for more control.

License
-------

[](#license)

MIT License. See [LICENSE](LICENSE) for more details.

Contributions
-------------

[](#contributions)

Pull requests are welcome. Please open issues for feature suggestions or bugs.

---

Made with ❤️ for Laravel developers who hate debugging twice.

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance41

Moderate activity, may be stable

Popularity11

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity14

Early-stage or recently created project

 Bus Factor1

Top contributor holds 75% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/7aa76e6cb2bda76821cb44fc3008161c2110496e11f3d7d9ba69813ac8cf0bdc?d=identicon)[rustemKaimolla](/maintainers/rustemKaimolla)

---

Top Contributors

[![exactkz](https://avatars.githubusercontent.com/u/79911015?v=4)](https://github.com/exactkz "exactkz (3 commits)")[![rustem-kaimolla](https://avatars.githubusercontent.com/u/72618924?v=4)](https://github.com/rustem-kaimolla "rustem-kaimolla (1 commits)")

### Embed Badge

![Health badge](/badges/rustem-kaimolla-laravel-exception-reporter/health.svg)

```
[![Health](https://phpackages.com/badges/rustem-kaimolla-laravel-exception-reporter/health.svg)](https://phpackages.com/packages/rustem-kaimolla-laravel-exception-reporter)
```

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B9.2k](/packages/psr-log)[itsgoingd/clockwork

php dev tools in your browser

5.9k27.6M94](/packages/itsgoingd-clockwork)[graylog2/gelf-php

A php implementation to send log-messages to a GELF compatible backend like Graylog2.

41838.2M138](/packages/graylog2-gelf-php)[bugsnag/bugsnag-psr-logger

Official Bugsnag PHP PSR Logger.

32132.5M2](/packages/bugsnag-bugsnag-psr-logger)[consolidation/log

Improved Psr-3 / Psr\\Log logger based on Symfony Console components.

15462.2M7](/packages/consolidation-log)[datadog/php-datadogstatsd

An extremely simple PHP datadogstatsd client

19124.6M15](/packages/datadog-php-datadogstatsd)

PHPackages © 2026

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