Skip to content

Commit bbff8e9

Browse files
authored
Merge pull request #19 from hhxsv5/master
Fixed compatibility
2 parents 51b4510 + 75741e3 commit bbff8e9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
| Dependency | Requirement |
1414
|-------------------------------------------------------|-----------------------------|
1515
| [PHP](https://secure.php.net/manual/en/install.php) | `>=5.5.0` `Recommend PHP7+` |
16-
| [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) | `~6.0` |
16+
| [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) | `^6.0\|^7.0` |
1717

1818
## Install
1919

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
},
1818
"authors": [
1919
{
20-
"name": "KuCoin",
21-
"email": "php@kucoin.com"
20+
"name": "KuCoin API",
21+
"email": "api@kucoin.com"
2222
}
2323
],
2424
"require": {
2525
"php": ">=5.5.0",
2626
"ext-json": "*",
2727
"guzzlehttp/guzzle": "^6.0|^7.0",
2828
"ratchet/pawl": "^0.4.1",
29-
"monolog/monolog": "~1.0|~2.0"
29+
"monolog/monolog": "~1.0|~2.0|~3.0"
3030
},
3131
"require-dev": {
32-
"phpunit/phpunit": "^5.7"
32+
"phpunit/phpunit": ">=5.7"
3333
},
3434
"autoload": {
3535
"psr-4": {

src/Api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ abstract class Api
1616
/**
1717
* @var string SDK Version
1818
*/
19-
const VERSION = '1.0.26';
19+
const VERSION = '1.0.27';
2020

2121
/**
2222
* @var string SDK update date
2323
*/
24-
const UPDATE_DATE = '2024.11.08';
24+
const UPDATE_DATE = '2025.02.04';
2525

2626
/**
2727
* @var string

0 commit comments

Comments
 (0)