Skip to content
This repository has been archived by the owner on Aug 15, 2021. It is now read-only.

Commit

Permalink
composer
Browse files Browse the repository at this point in the history
  • Loading branch information
slight committed Jun 28, 2017
1 parent ae2681d commit 26a2e00
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 22 deletions.
54 changes: 35 additions & 19 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,21 @@ CoolQ机器人 基于[http插件](https://richardchien.github.io/coolq-http-api/
MsgTool.php 对特殊消息的转译等处理操作封装
```
```
composer require slight-sky/coolq-sdk-php
```

```
include 'CoolQ.php';
$CoolQ = new CoolQ('127.0.0.1',5700,'token');
$CoolQ->getLoginInfo();
require_once '../Autoloader.php';
use CoolQ\CoolQ;
$CoolQ = new CoolQ('127.0.0.1',5700,'token');
echo $CoolQ->getLoginInfo();
```


Expand Down

0 comments on commit 26a2e00

Please sign in to comment.