A Powerful PHP library for making own Telegram bot easily!
<?php
require __DIR__ . "/vendor/autoload.php";
use TGram\{Telegram, Context};
$app = new Telegram("TOKEN");
$app->start(function(Context $ctx) {
$ctx->sendMessage("Hello");
});
$app->run();Two ways for installing & using the library
Clone this repository
git clone https://github.com/ArefShojaei/TGram/TGram.gitOR
Composer installer
composer require arefshojaei/tgram