dishcheng/dd_notice

laravel叮叮机器人推送

1.0.2 2018-12-12 06:30 UTC

This package is auto-updated.

Last update: 2024-04-08 11:55:29 UTC


README

For laravel >= 5.5

composer require dishcheng/dd_notice

官方设置说明

sdk设置说明

php artisan vendor:publish --tag=dd_notice

将webhook地址粘贴到config/dd_notice.php中的robot_webhook位置

文本推送方法:

use DishCheng\DdNotice\DdNotice;

DdNotice::send([
       'msgtype' => 'text',
       'text' => [
           'content' => '测试文本'
       ]
]);

更多方法参考官方设置说明