kseven / telegrambotci4
Telegram Bot for CodeIgniter 4
Requires
- php: ^7.4.3 || ^8.0
- longman/telegram-bot: *
- php-telegram-bot/telegram-bot-manager: ^1.8
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-08 13:58:36 UTC
README
Bot PHP - Telegram
Telegram Bot
🚧 Work In Progress 🚧
An A-Z example of Telegram bot using the [PHP Telegram Bot][core-github] library.
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][bot-manager-github]
❗ Important!
- Most of the commands found here are not to be used exactly as they are, they are mere demonstrations of features! They are provided as-is and any extra security measures need to be added by you, the developer.
- Before getting started with this project, make sure you have read the official [readme][core-readme-github] to understand how the PHP Telegram Bot library works and what is required to run a Telegram bot.
Let's get started then! 😃
1. Install your project (or new)
composer require kseven/telegrambotci4
or change the require
block in the composer.json
file:
"require": { "kseven/telegrambotci4": "*" }
Now you can install all dependencies using [composer]:
$ composer install
2. Adding your own commands
To use Commands enable the CustomCommands
folder in the config.
You can find a few example commands in the Commands
folder.
Do NOT just copy all of them to your bot, but instead learn from them and only add to your bot what you need.
Adding any extra commands to your bot that you don't need can be a security risk!