ixudra / csi by Elimentz

Custom PHP Crash Scene Investigation (CSI) library for the Laravel 5 framework - developed by Ixudra
34
2
3
Package Data
Maintainer Username: Elimentz
Maintainer Contact: jan.oris@ixudra.be (Jan Oris)
Package Create Date: 2014-11-25
Package Last Update: 2017-08-25
Language: PHP
License: MIT
Last Refreshed: 2024-04-26 03:20:48
Package Statistics
Total Downloads: 34
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

ixudra/csi

Latest Version on Packagist license StyleCI Total Downloads

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.