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

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

adriandmitroca/laravel-exception-monitor
========================================

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

1.0.0(10y ago)92173MITPHPPHP &gt;=5.6.0

Since Mar 21Pushed 10y ago1 watchersCompare

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

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

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

[](#laravel-exception-monitor)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ee73bd7fb7c83dfc390452fa17980191253bf4daccfb47361cb0ab17d9b00282/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f61647269616e646d6974726f63612f6c61726176656c2d657863657074696f6e2d6d6f6e69746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/adriandmitroca/laravel-exception-monitor)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/70ae94db81f7a22116bea425abdfede49a05762e7db4129d5e4438bbeca9de89/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f61647269616e646d6974726f63612f6c61726176656c2d657863657074696f6e2d6d6f6e69746f722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/adriandmitroca/laravel-exception-monitor)[![SensioLabsInsight](https://camo.githubusercontent.com/55757e21b43ac7e8085d37207dc54d9ae46b04cf4462fbaa6fa585a2fcc0d4bd/68747470733a2f2f696d672e736869656c64732e696f2f73656e73696f6c6162732f692f63363831663631362d656132632d343933322d383165612d3133386263666466396431342e7376673f7374796c653d666c61742d737175617265)](https://insight.sensiolabs.com/projects/c681f616-ea2c-4932-81ea-138bcfdf9d14)[![Quality Score](https://camo.githubusercontent.com/884451cf2e8714ab20512d07645c57848aa714ba504329aca6ecb05872d27ec6/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f61647269616e646d6974726f63612f6c61726176656c2d657863657074696f6e2d6d6f6e69746f722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/adriandmitroca/laravel-exception-monitor)[![Total Downloads](https://camo.githubusercontent.com/a79ab20cb63598e5f3a42ea11659ded4765fd401d2adeb78ee3effe679749f79/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f61647269616e646d6974726f63612f6c61726176656c2d657863657074696f6e2d6d6f6e69746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/adriandmitroca/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 adriandmitroca/laravel-exception-monitor
```

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

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

and then publish configuration files

```
php artisan vendor:publish --provider="Adriandmitroca\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.

```
