rezak/error-monitoring-laravel 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rezak/error-monitoring-laravel

Composer 安装命令:

composer require rezak/error-monitoring-laravel

包简介

error monitoring for laravel applications.

README 文档

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 rezak/error-monitoring-laravel:dev-master

publish vendor

php artisan vendor:publish --provider="RezaK\ErrorMonitoringLaravel\ErrorMonitoringServiceProvider"

environment config

add ERROR_MONITORING=true in your .env file

set your token in published file

in config/error-monitoring-laravel.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) {
            \RezaK\ErrorMonitoringLaravel\Monitor::reportError($e);
        });
    }

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

Author

Reza Karimi

统计信息

  • 总下载量: 63
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-06-29