版本发布 5
8.1.0
? · 2025-11-20
- Support PHP 8.5
7.0.0
? · 2024-02-11
Change the third argument of callers from a boolean to an array ```diff + $connection->post("tweets", ["text" => $text], ['jsonPayload' => true]); - $connection->post("tweets", ["text" => $text], true); ``` ```diff $connection->upload( 'media/upload', ['media' => $file_path, 'media_type' => 'video/mp4'], + ['chunkedUpload' => true], - true ); ```
6.2.0
? · 2023-10-28
- Expand PHP 8 support
6.1.0
? · 2023-08-08
Default v2 to JSON payload
6.0.0
? · 2023-07-24
Default to Twitter API v2. For v1 APIs you can switch back using: ```php $connection->setApiVersion('1.1'); ```