17/05
2017
A Telegram Bot API Client package
A composer package for Telegram bots API, (*2)
Telegram Bot API is an HTTP-based interface created for developers keen on building bots for Telegram., (*3)
To learn more about the Telegram Bot API, please consult the Introduction to Bots and Bot FAQ on official Telegram site., (*4)
This API library aims to making using the API as easy as reading the API Docs, every method is implemented identical to its description in the API docs and objects are autocreated from API responses., (*5)
If you have any questions, don't hesitate to contact me., (*6)
Install the pacakge, (*7)
composer require mfrna/telegrambot
Use it!, (*8)
use MFRNA\TelegramBot\API\Bot; $bot = new BOT(YOUR_API_KEY); $me = $bot->getMe(); echo $me->username;
As easy as that!, (*9)