看了Hanson兄弟的倍洽通知异常 php
咱们团队主要用钉钉,就想找个Laravel的钉钉通知异常的包,最好是安装后开箱即用的。laravel
在Google和GitHub上找了有3分钟仍是没有找到能开箱即用的,因而本身动手丰衣足食。git
花了20分钟"写"(chao)了一个Laravel 钉钉通知异常的包 wujunze/dingtalk-exception github
composer require wujunze/dingtalk-exception
php artisan vendor:publish --provider="DingNotice\DingNoticeServiceProvider
app/Exceptions/Handler.phpshell
use Wujunze\DingTalkException\DingTalkExceptionHelper; class Handler extends ExceptionHandler { // ... public function report(Exception $exception) { DingTalkExceptionHelper::notify($exception); parent::report($exception); } }
记得配置你的 config/ding.phpapp
GitHub仓库: https://github.com/wujunze/di...composer
cblink/bearychat-exception
wowiwj/ding-notice ide