Skip to content

Commit 2b0d553

Browse files
committed
docs(php): add documents for php
1 parent f7117c7 commit 2b0d553

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/tests export-ignore
2+
/.github export-ignore
3+
/phpunit.xml export-ignore

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ API documentation [Changelog](https://www.kucoin.com/docs-new/change-log)
44

55
Current synchronized API documentation version [20250313](https://www.kucoin.com/docs-new/change-log#20250313)
66

7+
## 2025-05-26(PHP 0.1.0-alpha)
8+
- Release PHP implementation
9+
710
## 2025-04-04(Python 1.2.1.post1)
811
- Bug Fixes
912

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ For an overview of the project and SDKs in other languages, refer to the [Main R
99
## 📦 Installation
1010

1111
### Latest Version: `0.1.0-alpha`
12+
13+
**Note**: This SDK is currently in the Alpha phase. We are actively iterating and improving its features, stability, and documentation. Feedback and contributions are highly encouraged to help us refine the SDK.
14+
1215
Install the SDK using `composer`:
1316

1417
```bash
@@ -181,7 +184,7 @@ This section provides details about the configurable parameters for both HTTP an
181184
| `reconnectInterval` | `float` (seconds) | Time interval between reconnection attempts. | `5.0` |
182185
| `dialTimeout` | `float` (seconds) | Timeout for establishing the WebSocket connection. | `10.0` |
183186
| `writeTimeout` | `float` (seconds) | Timeout for sending messages over the WebSocket connection. | `5.0` |
184-
| `eventCallback` | `callable\|null` | A user-defined callback function to handle WebSocket events.<br>Signature: `function(string $eventType, string $eventData, string $eventMessage): void` | `null` |
187+
| `eventCallback` | `callable\|null` | A user-defined callback function to handle WebSocket events.<br>Signature: `function(string $eventType, string $eventMessage): void` | `null` |
185188

186189
## 📝 License
187190

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
},
4949
"autoload-dev": {
5050
"psr-4": {
51-
"Tests\\": "test/"
51+
"Tests\\": "tests/"
5252
}
5353
},
5454
"minimum-stability": "stable",

0 commit comments

Comments
 (0)