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

Commit

Permalink
0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
slight committed Jul 1, 2017
1 parent 6185d11 commit 7b2908b
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 50 deletions.
151 changes: 105 additions & 46 deletions .idea/workspace.xml

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

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CoolQ机器人 基于[http插件](https://richardchien.github.io/coolq-http-api/
{
"require": {
"slight-sky/coolq-sdk-php": "^0.2.0"
"slight-sky/coolq-sdk-php": "^0.3.0"
}
}
Expand All @@ -30,9 +30,9 @@ CoolQ机器人 基于[http插件](https://richardchien.github.io/coolq-http-api/
```
require_once '../Autoloader.php';
use CoolQSDK\CoolQ;
use CoolQSDK\CoolQSDK;
$CoolQ = new CoolQ('127.0.0.1',5700,'token');
$CoolQ = new CoolQSDK('127.0.0.1',5700,'token');
echo $CoolQ->getLoginInfo();
Expand Down
2 changes: 1 addition & 1 deletion src/CoolQSDK/CoolQ.php → src/CoolQSDK/CoolQSDK.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace CoolQSDK;


class CoolQ
class CoolQSDK
{
private $host;
private $post;
Expand Down

0 comments on commit 7b2908b

Please sign in to comment.