This repository has been archived by the owner on Sep 7, 2022. It is now read-only.
Releases: Lukasss93/telegrambot-php
Releases · Lukasss93/telegrambot-php
1.6.6
1.6.5
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.2
1.5.1
1.5.0
[1.5.0]
Added
- Added new
endpoint
method to call api methods manually - Added 2 classes in constants namespace:
- ChatActions to use (if you want) in
action
parameter (sendChatAction method) - ParseModes to use (if you want) in
parse_mode
parameter
- ChatActions to use (if you want) in
- Auto split very long text in
sendMessage
method (4096 characters per message)- Enable it after class instantiation:
$bot = new TelegramBot($token); $bot->splitLongMessage=true;
- Default:
false
- Return
Message[]
- Enable it after class instantiation: