Laravel Exception Slacker
The Laravel Exception Slacker is a Laravel Package, that informs you via Slack if an Exception is thrown., (*1)
Installing
Add the dependency to your project:, (*2)
composer require alexlg89/laravel-exception-slacker
Since Laravel 5.5 the service provider will autmatically get registered. In older versions you have to add the Service Provider to the config/app.php, (*3)
'providers' => [
// ...
Alexlg89\LaravelExceptionSlacker\LaravelExceptionSlackerServiceProvider::class,
];
Publish the config file with:, (*4)
php artisan vendor:publish --provider="Alexlg89\LaravelExceptionSlacker\LaravelExceptionSlackerServiceProvider"
The value slack_webhook_url is the URL to your Slack Webhook., (*5)
That's it!, (*6)
License
The MIT License (MIT). Please see License File for more information., (*7)