harttmann/secondo

The easy framework for create telegramBot

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/harttmann/secondo

1.0.3 2025-01-31 08:24 UTC

This package is auto-updated.

Last update: 2025-11-29 07:23:26 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