diff --git a/README.md b/README.md index de3af94..d857c3f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,13 @@ # Laraquest +Sending requests and receiving Telegram updates. +- Bot API Version `8.2` + +## Other Versions +- [Laraquest GoLang](https://github.com/laraXgram/Laraquest-Go) +- Laraquest Python +- Laraquest JavaScript +- Laraquest Rust +- Laraquest C# ## Installation: ```bash @@ -7,15 +16,14 @@ composer require laraxgram/laraquest --- ## Config: ```php -$_ENV["update_type"] = 'sync'; -$_ENV["BOT_TOKEN"] = "123456798:asdfghjklzxcvbnmqwpoieuryt"; -$_ENV["BOT_API_SERVER"] = "https://api.telegram.org/"; +$_ENV["BOT_TOKEN"] = "123456798:asdfghjklzxcvbnmqwpoieuryt"; // required +$_ENV["BOT_API_SERVER"] = "https://api.telegram.org/"; // optional // Polling -$_ENV["sleep_interval"] = 0.5; -$_ENV["timeout"] = 100; -$_ENV["limit"] = 100; -$_ENV["allow_updates"] = ["*"]; +$_ENV["sleep_interval"] = 0.5; // optional +$_ENV["timeout"] = 100; // optional +$_ENV["limit"] = 100; // optional +$_ENV["allow_updates"] = ["*"]; // optional ``` --- ## Usage: