PHPackages                             famdirksen/laravel-exception-monitor - 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. famdirksen/laravel-exception-monitor

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

famdirksen/laravel-exception-monitor
====================================

Little Laravel package to notify you about exceptions in your application.

1.0.1(8y ago)22.3kMITPHPPHP &gt;=5.6.0

Since May 22Pushed 8y ago1 watchersCompare

[ Source](https://github.com/Famdirksen/laravel-exception-monitor)[ Packagist](https://packagist.org/packages/famdirksen/laravel-exception-monitor)[ RSS](/packages/famdirksen-laravel-exception-monitor/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

Laravel Exception Monitor
=========================

[](#laravel-exception-monitor)

This package notifies you when exceptions are thrown on some of your production application. It's like lite and free version of Bugsnag for small projects for which the use of this amazing SaaS tool would be simply overkill.

[![Slack Preview](https://camo.githubusercontent.com/a14893dd5af366e8988fc0328771178316f5d8c02c76508f4d689efa54b67c47/687474703a2f2f692e696d6775722e636f6d2f43744e527236552e706e67)](https://camo.githubusercontent.com/a14893dd5af366e8988fc0328771178316f5d8c02c76508f4d689efa54b67c47/687474703a2f2f692e696d6775722e636f6d2f43744e527236552e706e67)

#### Installation

[](#installation)

```
composer require famdirksen/laravel-exception-monitor
```

Next, you need to register Service Provider in `config/app.php`

```
$providers = [
    ...
    Famdirksen\LaravelExceptionMonitor\ExceptionMonitorServiceProvider::class,
    ...
];
```

and then publish configuration files

```
php artisan vendor:publish --provider="Famdirksen\LaravelExceptionMonitor\ExceptionMonitorServiceProvider"

```

You also have to make sure if you have [makzn/slack](https://github.com/maknz/slack) package installed and configured properly for Slack notifications.

#### Configuration

[](#configuration)

Config File is pretty self-explanatory.

```
