├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── examples ├── echobot-getupdates.php └── echobot-webhook.php ├── phpunit.xml ├── src ├── Exception │ ├── InvalidUpdateException.php │ └── TelegramException.php └── Telegram │ ├── Bot.php │ ├── TelegramResponse.php │ └── Update.php └── tests ├── Pest.php └── Unit └── Telegram ├── BotTest.php └── UpdatesTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/composer.json -------------------------------------------------------------------------------- /examples/echobot-getupdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/examples/echobot-getupdates.php -------------------------------------------------------------------------------- /examples/echobot-webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/examples/echobot-webhook.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Exception/InvalidUpdateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/src/Exception/InvalidUpdateException.php -------------------------------------------------------------------------------- /src/Exception/TelegramException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/src/Exception/TelegramException.php -------------------------------------------------------------------------------- /src/Telegram/Bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/src/Telegram/Bot.php -------------------------------------------------------------------------------- /src/Telegram/TelegramResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/src/Telegram/TelegramResponse.php -------------------------------------------------------------------------------- /src/Telegram/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/src/Telegram/Update.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/Unit/Telegram/BotTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/tests/Unit/Telegram/BotTest.php -------------------------------------------------------------------------------- /tests/Unit/Telegram/UpdatesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelegramSDK/BotAPI/HEAD/tests/Unit/Telegram/UpdatesTest.php --------------------------------------------------------------------------------