看了Hanson兄弟的倍洽通知異常
我們團隊主要用釘釘唉堪,就想找個Laravel的釘釘通知異常的包鞋邑,最好是安裝后開箱即用的。
在Google和GitHub上找了有3分鐘還是沒有找到能開箱即用的,于是自己動手豐衣足食。
花了20分鐘"寫"(chao)了一個Laravel 釘釘通知異常的包 wujunze/dingtalk-exception
食用方法
安裝
composer require wujunze/dingtalk-exception
發(fā)布配置文件
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
效果如下
GitHub倉庫: https://github.com/wujunze/dingtalk-exception
Inspire And Thanks
cblink/bearychat-exception
wowiwj/ding-notice