imiguelacuna / example-bot

[WIP] An A-Z example of a PHP Telegram Bot.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHP Telegram Bot Example

An A-Z example of Telegram bot using the PHP Telegram Bot library.

Important! Before getting started with this project, make sure you have read the official readme to understand how the PHP Telegram Bot library works and what is required to run a Telegram bot.

Let's get started then! 😃

This repository aims to demonstrate the usage of all the features offered by the PHP Telegram Bot library and as such contains all example commands. Also, it gives an example setup for both the standard usage and using the PHP Telegram Bot Manager

0. Cloning this repository

To start off, you can clone this repository using git:

$ git clone https://github.com/php-telegram-bot/example-bot.git

or better yet, download it as a zip file:

$ curl -o example-bot.zip https://github.com/php-telegram-bot/example-bot/archive/master.zip

Unzip the files to the root of your project folder.

1. Making it yours

Now you can choose what installation you would like, either the default one or using the Bot Manager project. Depending on which one you choose, you can delete the files that are not required.


Default Next, edit the following files, replacing all necessary values with those of your project. Thanks to reading the main readme file, you should know what these do.

  • composer.json (Describes your project and it's dependencies)
  • set.php (Used to set the webhook)
  • unset.php (Used to unset the webhook)
  • hook.php (Used for the webhook method)
  • getUpdatesCLI.php (Used for the getUpdates method)
  • cron.php (Used to execute commands via cron)

Bot Manager Using the bot manager makes life much easier, as all configuration goes into a single file, manager.php.

If you decide to use the Bot Manager, be sure to read all about it and change the require block in the composer.json file:

"require": {
    "php-telegram-bot/telegram-bot-manager": "*"
}

Then, edit the following files, replacing all necessary values with those of your project.

  • composer.json (Describes your project and it's dependencies)
  • manager.php (Used as the main entry point for everything)

Now you can install all dependencies using composer:

$ composer install

To be continued!

About

[WIP] An A-Z example of a PHP Telegram Bot.

License:MIT License


Languages

Language:PHP 100.0%