RubikaPhp
کتابخانه ای برای تعامل با Rubika Bot Api
git clone https://github.com/AbolfazlMirzae/RubikaPhp.gitrequire_once('rubikaphp/lib/autoload.php');
use RubikaPhp\Core\Bot;
$bot = new Bot('Your Bot Token');$chat_id = 'c12345'; #Your ChatId
$text = 'Hello From RubikaPhp'; #Your Text
$bot->chatId($chat_id)
->text($text)
->sendMessage();$chat_id = 'c123456';,²
$filePath = 'path/to/file.png'; #Optional
$bot->chatId($chat_id)
->filePath($filePath)
->sendFile();