Skip to content
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.

Releases: Lukasss93/telegrambot-php

1.6.6

14 Feb 12:38
Compare
Choose a tag to compare

Updated to Telegram Bot API 3.6

1.6.5

25 Nov 22:13
Compare
Choose a tag to compare

Updated to Telegram Bot API 3.5

1.6.4

11 Oct 12:21
Compare
Choose a tag to compare
  • Updated to Telegram Bot API 3.4

1.6.3

21 Sep 15:31
Compare
Choose a tag to compare
  • Fixed getCommand() method in Message object.

1.6.2

17 Sep 15:09
Compare
Choose a tag to compare
  • Fixed getCommand() method in Message object.

1.6.1

17 Sep 10:42
Compare
Choose a tag to compare
  • Now getCommand() method in Message object return null if text property isn't a command.

1.6.0

23 Aug 10:29
Compare
Choose a tag to compare
  • Updated to Telegram Bot API 3.3

1.5.2

20 Aug 10:30
Compare
Choose a tag to compare
  • Renamed curl_file_create_auto_mime function in curl_file_create_automime

1.5.1

19 Aug 17:46
Compare
Choose a tag to compare

[1.5.1]

  • Fixed curl_file_create_auto_mime function

1.5.0

14 Aug 17:18
Compare
Choose a tag to compare

[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
  • 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[]