exewen / robot-chat
A robot-chat component for Exewen.
v2.0.3
2025-03-21 10:39 UTC
Requires
- php: >=7.3
- ext-json: *
- exewen/facades: ^2
Requires (Dev)
- phpunit/phpunit: ^5.7 | ^6.5 | ^7.5 | ^8.4 | ^9.3
README
# copy配置文件并配置 cp -rf ./publish/exewen .you_app/config/exewen # boot启动定义(composer 加载路径) !defined('BASE_PATH_PKG') && define('BASE_PATH_PKG', dirname(__DIR__, 1));
使用
use Exewen\RobotChat\RobotChatFacade; # text RobotChatFacade::text('消息通知测试'); # markdown $markdown = '实时新增用户反馈<font color="warning">132例</font>,请相关同事注意。 > 类型:<font color="comment">用户反馈</font> > 普通用户反馈:<font color="comment">117例</font> > VIP用户反馈:<font color="comment">15例</font>'; RobotChatFacade::markdown($markdown, null, RobotEnum::DING_DING);