qbhy/mirai

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (v1.0.1) of this package.

Maintainers

Package info

github.com/qbhy/mirai-php

pkg:composer/qbhy/mirai

Statistics

Installs: 203

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

v1.0.1 2020-07-31 06:57 UTC

This package is auto-updated.

Last update: 2020-09-07 09:34:17 UTC


README

mirai http api 的 PHP sdk.

暂未封装 websocket 相关接口

安装 - install

$ composer require qbhy/mirai

使用 - usage

$bot = new \Qbhy\Mirai\Bot([
    'debug' => true,

    'host' => 'http://localhost:8000',

    'auth_key' => 'your auth key',
]);

$bot->auth; // 授权相关接口
$bot->plugin; // 插件相关接口
$bot->manager; // 管理相关接口
$bot->message; // 消息相关接口

// 给指定还有发送文本消息
$bot->message->sendFriendMessage(572490755, [
    \Qbhy\Mirai\Util\MessageUtil::plain('文本消息'),
]);

mirai-php qbhy0715@qq.com