Skip to content

Commit 489d7a6

Browse files
authored
Merge pull request #98 from hhxsv5/master
Support guzzle 7.x
2 parents 4594f20 + 35c4ee7 commit 489d7a6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
| Dependency | Requirement |
1717
| -------- | -------- |
1818
| [PHP](https://secure.php.net/manual/en/install.php) | `>=5.5.0` `Recommend PHP7+` |
19-
| [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) | `~6.0` |
19+
| [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) | `^6.0\|^7.0` |
2020

2121
## Install
2222
> Install package via [Composer](https://getcomposer.org/).
@@ -31,7 +31,7 @@ composer require "kucoin/kucoin-php-sdk:~1.1.0"
3131

3232
| Environment | BaseUri |
3333
| -------- | -------- |
34-
| *Production* | `https://api.kucoin.com(DEFAULT)` `https://api.kucoin.cc` |
34+
| *Production* | `https://api.kucoin.com(DEFAULT)` `https://api.kucoin.top` |
3535
| *Sandbox* | `https://openapi-sandbox.kucoin.com` |
3636

3737
```php

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"require": {
2323
"php": ">=5.5.0",
2424
"ext-json": "*",
25-
"guzzlehttp/guzzle": "~6.0",
25+
"guzzlehttp/guzzle": "^6.0|^7.0",
2626
"ratchet/pawl": "^0.3.2",
2727
"monolog/monolog": "~1.0|~2.0"
2828
},

src/Api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ abstract class Api
1616
/**
1717
* @var string SDK Version
1818
*/
19-
const VERSION = '1.1.20';
19+
const VERSION = '1.1.21';
2020

2121
/**
2222
* @var string SDK update date

0 commit comments

Comments
 (0)