美文网首页代码与远方
使用钉钉通知你的 Laravel 框架系统异常

使用钉钉通知你的 Laravel 框架系统异常

作者: 吴钧泽 | 来源:发表于2018-07-26 19:12 被阅读0次

看了Hanson兄弟的倍洽通知异常

我们团队主要用钉钉,就想找个Laravel的钉钉通知异常的包,最好是安装后开箱即用的。

在Google和GitHub上找了有3分钟还是没有找到能开箱即用的,于是自己动手丰衣足食

花了20分钟"写"(chao)了一个Laravel 钉钉通知异常的包 wujunze/dingtalk-exception

食用方法

安装

    composer require wujunze/dingtalk-exception

发布配置文件

    php artisan vendor:publish --provider="DingNotice\DingNoticeServiceProvider

配置Handler

app/Exceptions/Handler.php

use Wujunze\DingTalkException\DingTalkExceptionHelper;

class Handler extends ExceptionHandler
{
  // ...
  
    public function report(Exception $exception)
    {
        DingTalkExceptionHelper::notify($exception);
        parent::report($exception);
    }

}

记得配置你的 config/ding.php

效果如下

file

GitHub仓库: https://github.com/wujunze/dingtalk-exception

Inspire And Thanks

cblink/bearychat-exception
wowiwj/ding-notice

Thanks

相关文章

网友评论

    本文标题:使用钉钉通知你的 Laravel 框架系统异常

    本文链接:https://www.haomeiwen.com/subject/wzqimftx.html