├── .github └── workflows │ └── php.yaml ├── CONDUCT.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml └── src ├── Actions.php ├── Api.php ├── Commands ├── Command.php ├── CommandBus.php ├── CommandInterface.php └── HelpCommand.php ├── Exceptions ├── TelegramOtherException.php ├── TelegramResponseException.php ├── TelegramSDKException.php └── TelegramUndefinedPropertyException.php ├── FileUpload └── InputFile.php ├── HttpClients ├── GuzzleHttpClient.php └── HttpClientInterface.php ├── Laravel ├── Facades │ └── Telegram.php ├── TelegramServiceProvider.php └── config │ └── telegram.php ├── Objects ├── Audio.php ├── BaseObject.php ├── CallbackQuery.php ├── Chat.php ├── Contact.php ├── Document.php ├── File.php ├── Location.php ├── Message.php ├── PhotoSize.php ├── Sticker.php ├── Update.php ├── User.php ├── UserProfilePhotos.php ├── Video.php └── Voice.php ├── TelegramClient.php ├── TelegramRequest.php └── TelegramResponse.php /.github/workflows/php.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/.github/workflows/php.yaml -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Actions.php -------------------------------------------------------------------------------- /src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Api.php -------------------------------------------------------------------------------- /src/Commands/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Commands/Command.php -------------------------------------------------------------------------------- /src/Commands/CommandBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Commands/CommandBus.php -------------------------------------------------------------------------------- /src/Commands/CommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Commands/CommandInterface.php -------------------------------------------------------------------------------- /src/Commands/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Commands/HelpCommand.php -------------------------------------------------------------------------------- /src/Exceptions/TelegramOtherException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Exceptions/TelegramOtherException.php -------------------------------------------------------------------------------- /src/Exceptions/TelegramResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Exceptions/TelegramResponseException.php -------------------------------------------------------------------------------- /src/Exceptions/TelegramSDKException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Exceptions/TelegramSDKException.php -------------------------------------------------------------------------------- /src/Exceptions/TelegramUndefinedPropertyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Exceptions/TelegramUndefinedPropertyException.php -------------------------------------------------------------------------------- /src/FileUpload/InputFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/FileUpload/InputFile.php -------------------------------------------------------------------------------- /src/HttpClients/GuzzleHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/HttpClients/GuzzleHttpClient.php -------------------------------------------------------------------------------- /src/HttpClients/HttpClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/HttpClients/HttpClientInterface.php -------------------------------------------------------------------------------- /src/Laravel/Facades/Telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Laravel/Facades/Telegram.php -------------------------------------------------------------------------------- /src/Laravel/TelegramServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Laravel/TelegramServiceProvider.php -------------------------------------------------------------------------------- /src/Laravel/config/telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Laravel/config/telegram.php -------------------------------------------------------------------------------- /src/Objects/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Audio.php -------------------------------------------------------------------------------- /src/Objects/BaseObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/BaseObject.php -------------------------------------------------------------------------------- /src/Objects/CallbackQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/CallbackQuery.php -------------------------------------------------------------------------------- /src/Objects/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Chat.php -------------------------------------------------------------------------------- /src/Objects/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Contact.php -------------------------------------------------------------------------------- /src/Objects/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Document.php -------------------------------------------------------------------------------- /src/Objects/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/File.php -------------------------------------------------------------------------------- /src/Objects/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Location.php -------------------------------------------------------------------------------- /src/Objects/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Message.php -------------------------------------------------------------------------------- /src/Objects/PhotoSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/PhotoSize.php -------------------------------------------------------------------------------- /src/Objects/Sticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Sticker.php -------------------------------------------------------------------------------- /src/Objects/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Update.php -------------------------------------------------------------------------------- /src/Objects/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/User.php -------------------------------------------------------------------------------- /src/Objects/UserProfilePhotos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/UserProfilePhotos.php -------------------------------------------------------------------------------- /src/Objects/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Video.php -------------------------------------------------------------------------------- /src/Objects/Voice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/Objects/Voice.php -------------------------------------------------------------------------------- /src/TelegramClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/TelegramClient.php -------------------------------------------------------------------------------- /src/TelegramRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/TelegramRequest.php -------------------------------------------------------------------------------- /src/TelegramResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBotPeaches/telegram-bot-sdk/HEAD/src/TelegramResponse.php --------------------------------------------------------------------------------