├── .gitattributes ├── .gitignore ├── README.md ├── Telegram.php ├── base ├── Command.php ├── Input.php ├── Response.php ├── TelegramBase.php └── Type.php ├── composer.json ├── docs └── guide-ru │ └── README.md └── types ├── Animation.php ├── Audio.php ├── CallbackQuery.php ├── Chat.php ├── ChatMember.php ├── ChatPermissions.php ├── ChatPhoto.php ├── Contact.php ├── Document.php ├── Entitie.php ├── Entities.php ├── File.php ├── ForceReply.php ├── ForwardFrom.php ├── From.php ├── InlineKeyboard.php ├── InlineKeyboardButton.php ├── InlineKeyboardMarkup.php ├── InputMedia ├── InputMedia.php ├── InputMediaAnimation.php ├── InputMediaAudio.php ├── InputMediaDocument.php ├── InputMediaPhoto.php ├── InputMediaVideo.php └── sendMediaGroup.php ├── KeyboardButton.php ├── KeyboardButtonPollType.php ├── Location.php ├── LoginUrl.php ├── Message.php ├── MessageEntity.php ├── Photo.php ├── PhotoSize.php ├── Poll.php ├── PollAnswer.php ├── PollOption.php ├── ReplyKeyboardMarkup.php ├── ReplyKeyboardRemove.php ├── ResponseParameters.php ├── Result.php ├── Sticker.php ├── User.php ├── UserProfilePhotos.php ├── Venue.php ├── Video.php ├── VideoNote.php └── Voice.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/README.md -------------------------------------------------------------------------------- /Telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/Telegram.php -------------------------------------------------------------------------------- /base/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/base/Command.php -------------------------------------------------------------------------------- /base/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/base/Input.php -------------------------------------------------------------------------------- /base/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/base/Response.php -------------------------------------------------------------------------------- /base/TelegramBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/base/TelegramBase.php -------------------------------------------------------------------------------- /base/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/base/Type.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/composer.json -------------------------------------------------------------------------------- /docs/guide-ru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/docs/guide-ru/README.md -------------------------------------------------------------------------------- /types/Animation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Animation.php -------------------------------------------------------------------------------- /types/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Audio.php -------------------------------------------------------------------------------- /types/CallbackQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/CallbackQuery.php -------------------------------------------------------------------------------- /types/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Chat.php -------------------------------------------------------------------------------- /types/ChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/ChatMember.php -------------------------------------------------------------------------------- /types/ChatPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/ChatPermissions.php -------------------------------------------------------------------------------- /types/ChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/ChatPhoto.php -------------------------------------------------------------------------------- /types/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Contact.php -------------------------------------------------------------------------------- /types/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Document.php -------------------------------------------------------------------------------- /types/Entitie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Entitie.php -------------------------------------------------------------------------------- /types/Entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Entities.php -------------------------------------------------------------------------------- /types/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/File.php -------------------------------------------------------------------------------- /types/ForceReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/ForceReply.php -------------------------------------------------------------------------------- /types/ForwardFrom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/ForwardFrom.php -------------------------------------------------------------------------------- /types/From.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/From.php -------------------------------------------------------------------------------- /types/InlineKeyboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InlineKeyboard.php -------------------------------------------------------------------------------- /types/InlineKeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InlineKeyboardButton.php -------------------------------------------------------------------------------- /types/InlineKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InlineKeyboardMarkup.php -------------------------------------------------------------------------------- /types/InputMedia/InputMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InputMedia/InputMedia.php -------------------------------------------------------------------------------- /types/InputMedia/InputMediaAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InputMedia/InputMediaAnimation.php -------------------------------------------------------------------------------- /types/InputMedia/InputMediaAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InputMedia/InputMediaAudio.php -------------------------------------------------------------------------------- /types/InputMedia/InputMediaDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InputMedia/InputMediaDocument.php -------------------------------------------------------------------------------- /types/InputMedia/InputMediaPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InputMedia/InputMediaPhoto.php -------------------------------------------------------------------------------- /types/InputMedia/InputMediaVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InputMedia/InputMediaVideo.php -------------------------------------------------------------------------------- /types/InputMedia/sendMediaGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/InputMedia/sendMediaGroup.php -------------------------------------------------------------------------------- /types/KeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/KeyboardButton.php -------------------------------------------------------------------------------- /types/KeyboardButtonPollType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/KeyboardButtonPollType.php -------------------------------------------------------------------------------- /types/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Location.php -------------------------------------------------------------------------------- /types/LoginUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/LoginUrl.php -------------------------------------------------------------------------------- /types/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Message.php -------------------------------------------------------------------------------- /types/MessageEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/MessageEntity.php -------------------------------------------------------------------------------- /types/Photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Photo.php -------------------------------------------------------------------------------- /types/PhotoSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/PhotoSize.php -------------------------------------------------------------------------------- /types/Poll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Poll.php -------------------------------------------------------------------------------- /types/PollAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/PollAnswer.php -------------------------------------------------------------------------------- /types/PollOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/PollOption.php -------------------------------------------------------------------------------- /types/ReplyKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/ReplyKeyboardMarkup.php -------------------------------------------------------------------------------- /types/ReplyKeyboardRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/ReplyKeyboardRemove.php -------------------------------------------------------------------------------- /types/ResponseParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/ResponseParameters.php -------------------------------------------------------------------------------- /types/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Result.php -------------------------------------------------------------------------------- /types/Sticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Sticker.php -------------------------------------------------------------------------------- /types/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/User.php -------------------------------------------------------------------------------- /types/UserProfilePhotos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/UserProfilePhotos.php -------------------------------------------------------------------------------- /types/Venue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Venue.php -------------------------------------------------------------------------------- /types/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Video.php -------------------------------------------------------------------------------- /types/VideoNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/VideoNote.php -------------------------------------------------------------------------------- /types/Voice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbarjoudi/yii2-bot-telegram/HEAD/types/Voice.php --------------------------------------------------------------------------------