roketin / immune
package to report exceptions for lumen framework by Roketin
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
pkg:composer/roketin/immune
Requires
- guzzlehttp/guzzle: ^6.3
This package is not auto-updated.
Last update: 2025-10-11 13:16:06 UTC
README
package to report exceptions for lumen framework by Roketin
1. Installation
Open your command console and type just like install another package in laravel.
composer require roketin/immune
After installation done then you
php artisan immune-key:generate
Copy key to .env file on your project and make configuration like this
APP_URL=http://yourwebsite.com
IMMUNE_API=http://immune.roketin.com
IMMUNE_KEY=YOUR_KEY
then you go to file app.php
on directory bootstrap/app.php
you should copy this on register section
$app->register(Roketin\Immune\ReportExceptionsServiceProvider::class);
2. Usage
On your handler app\Exceptions\Handler.php
use Laravel\Lumen\Exceptions\Handler as ExceptionHandler;
Change to
use Roketin\Immune\Exceptions\ReportHandler as ExceptionHandler;