bin-ism/error-monitoring

this is a hello world repo for composer.

0.0.0 2022-08-19 16:24 UTC

This package is auto-updated.

Last update: 2024-11-15 20:06:11 UTC


README

Installation

register in our website

http://error-monitoring.pzhame.ir/register

create account and get token :

in your account , create a project and get specific token http://error-monitoring.pzhame.ir

install package via composer

composer require bin-ism/error-monitoring:dev-master

publish vendor

php artisan vendor:publish --provider="Binism\ErrorMonitoring\ErrorMonitoringServiceProvider"

environment config

add ERROR_MONITORING=true in your .env file

set your token in published file

in config/error-monitoring.php set your token

<?php
return [
    'token' => 'YOUR_TOKEN',
];

Usage

in app/Exceptions/Handler.php add blow code

 public function register()
    {
        $this->reportable(function (Throwable $e) {
            \Binism\ErrorMonitoring\Monitor::reportError($e);
        });
    }

now , whenever an error happend you can what complete detail in our website

Author

Reza Karimi