tgbotlib/README.md

37 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2023-02-12 13:41:43 -05:00
# TgBotLib
2023-02-15 15:35:50 -05:00
TgBotLib is a library for creating Telegram Bots in PHP, based on the [Telegram Bot API](https://core.telegram.org/bots/api).
The approach taken by this library is to be as close as possible to the Telegram Bot API, while providing a simple and
easy to use interface that is easy to understand and out of your way, allowing you to use the library as a simple
2023-02-18 20:49:27 -05:00
native around the API.
2023-02-20 21:46:13 -05:00
## Table of contents
<!-- TOC -->
* [TgBotLib](#tgbotlib)
* [Table of contents](#table-of-contents)
* [Versioning](#versioning)
* [TODO](#todo)
2023-02-20 21:46:13 -05:00
* [License](#license)
<!-- TOC -->
2023-02-18 20:49:27 -05:00
## Versioning
The library's version is based on the version of the Telegram Bot API that it supports, for example, the version `6.5.0`
of the library supports the Telegram Bot API version `6.5` and patch version reflect the current patch version of the library.
To clarify, for example `6.5.4` means the library is based on the Telegram Bot API version `6.5` and the library's patch
version is `4`. Library patches are used to fix bugs or add improvements in the library, and are not related to the
Telegram Bot API version.
2023-02-15 15:35:50 -05:00
2023-02-20 21:46:13 -05:00
## TODO
2023-02-15 15:35:50 -05:00
Documentation will be redone
2023-02-20 21:46:13 -05:00
2023-02-12 13:41:43 -05:00
# License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details