ixudra / csi
Custom PHP Crash Scene Investigation (CSI) library for the Laravel 5 framework - developed by Ixudra
Requires
- php: >=5.4.0
- illuminate/auth: ~5.0
- illuminate/support: ~5.0
- ixudra/curl: ~6.5
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~5.0
README
Custom PHP Crash Scene Investigation (CSI) library for the Laravel 5 framework - developed by Ixudra.
This package can be used by anyone at any given time, but keep in mind that it is optimized for my personal custom workflow. It may not suit your project perfectly and modifications may be in order.
Installation
Pull this package in through Composer:
{ "require": { "ixudra/csi": "2.*" } }
Add the service provider to your config/app.php
file:
providers => array( //... Ixudra\Csi\CsiServiceProvider::class, )
Add your API key to your .env
file:
CSI_BASE_URL=ixudra_api_url CSI_PUBLIC_KEY=your_api_key
Add the error handling instructions to your bootstrap/app.php
file:
$app->singleton( Illuminate\Contracts\Debug\ExceptionHandler::class, Ixudra\Csi\Exceptions\CsiExceptionHandler::class, App\Exceptions\Handler::class );
Usage
In order to use the package, you need to tell your app to send exception information to your portal of choice. This will happen automatically once you have completed the setup mentioned above. Once an exception is registered, the web portal administrator will receive the exception information as soon as he logs in and will take action as soon as possible.
Configuration
You can also publish the package's configuration files using the artisan command:
php artisan config:publish ixudra/csi
This will allow you to change the web portal URL as well as browser and platform information that is used by the package.