harttmann/secondo

The easy framework for create telegramBot

1.0.3 2025-01-31 08:24 UTC

This package is auto-updated.

Last update: 2025-08-29 06:40:24 UTC


README

instalation

composer require harttmann/secondo

How to use this lib?

Easy...

<?php
include __DIR__."/vendor/autoload.php";
$bot = new  Bot("TOKEN");
$bot->on("message", function($message) {
    $message->chat->send("hw");
});

$bot->poll();

use types to type your code See example or guide!

By harttman