├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── PHPEasyGit.json ├── README.md ├── composer.json ├── docs ├── CNAME ├── _config.yml ├── compare.md ├── construct.md ├── database.md ├── docs.md ├── errors_handling.md ├── handling.md ├── index.md ├── installation.md ├── objects.md ├── prototypes.md ├── requests.md ├── start.md └── types │ ├── Animation.md │ ├── Audio.md │ ├── CallbackGame.md │ ├── CallbackQuery.md │ ├── Chat.md │ ├── ChatMember.md │ ├── ChatPermissions.md │ ├── ChatPhoto.md │ ├── ChosenInlineResult.md │ ├── Contact.md │ ├── Dice.md │ ├── Document.md │ ├── Game.md │ ├── GameHighScore.md │ ├── InlineKeyboardButton.md │ ├── InlineKeyboardMarkup.md │ ├── InlineQuery.md │ ├── InlineQueryResultArticle.md │ ├── InlineQueryResultAudio.md │ ├── InlineQueryResultCachedAudio.md │ ├── InlineQueryResultCachedDocument.md │ ├── InlineQueryResultCachedGif.md │ ├── InlineQueryResultCachedMpeg4Gif.md │ ├── InlineQueryResultCachedPhoto.md │ ├── InlineQueryResultCachedSticker.md │ ├── InlineQueryResultCachedVideo.md │ ├── InlineQueryResultCachedVoice.md │ ├── InlineQueryResultContact.md │ ├── InlineQueryResultDocument.md │ ├── InlineQueryResultGame.md │ ├── InlineQueryResultGif.md │ ├── InlineQueryResultLocation.md │ ├── InlineQueryResultMpeg4Gif.md │ ├── InlineQueryResultPhoto.md │ ├── InlineQueryResultVenue.md │ ├── InlineQueryResultVoice.md │ ├── InputFile.md │ ├── InputMediaAnimation.md │ ├── InputMediaAudio.md │ ├── InputMediaDocument.md │ ├── InputMediaVideo.md │ ├── InputMessageContent.md │ ├── Invoice.md │ ├── KeyboardButton.md │ ├── KeyboardButtonPollType.md │ ├── LabeledPrice.md │ ├── Location.md │ ├── LoginUrl.md │ ├── MaskPosition.md │ ├── Message.md │ ├── MessageEntity.md │ ├── OrderInfo.md │ ├── PassportData.md │ ├── PhotoSize.md │ ├── Poll.md │ ├── PollAnswer.md │ ├── PollOption.md │ ├── PreCheckoutQuery.md │ ├── ReplyKeyboardMarkup.md │ ├── ShippingAddress.md │ ├── ShippingOption.md │ ├── ShippingQuery.md │ ├── Sticker.md │ ├── StickerSet.md │ ├── SuccessfulPayment.md │ ├── Update.md │ ├── User.md │ ├── UserProfilePhotos.md │ ├── Venue.md │ ├── Video.md │ ├── VideoNote.md │ └── Voice.md ├── examples ├── echo_bot.php ├── encoder_bot.php ├── error_handlers.php ├── ping.php └── userbot.php ├── src ├── NovaGram │ ├── BaseCallbackHandler.php │ ├── BaseCommandHandler.php │ ├── BaseHandler.php │ ├── Bot.php │ ├── CurlException.php │ ├── Database.php │ ├── Dispatcher.php │ ├── EntitiesParser.php │ ├── Exception.php │ ├── HandlersTrait.php │ ├── Methods.php │ ├── PDOContainer.php │ ├── TelegramLogger.php │ ├── UserBot.php │ ├── Utils.php │ ├── WebLogin │ │ ├── JSLogin.js │ │ └── method.php │ ├── conversations.php │ ├── dc.php │ ├── helpers.php │ └── json.json ├── Prototypes │ ├── Exception.php │ ├── Prototype.php │ ├── proto.php │ └── simpleProto.php ├── Telegram │ ├── Exceptions │ │ ├── BadGatewayException.php │ │ ├── BadRequestException.php │ │ ├── ConflictException.php │ │ ├── Exception.php │ │ ├── ForbiddenException.php │ │ ├── MethodNotAllowedException.php │ │ ├── NotFoundException.php │ │ ├── RequestEntityTooLargeException.php │ │ ├── TooManyRequestsException.php │ │ └── UnauthorizedException.php │ ├── ObjectsList.php │ ├── Type.php │ └── Types │ │ ├── Animation.php │ │ ├── Audio.php │ │ ├── BotCommand.php │ │ ├── CallbackGame.php │ │ ├── CallbackQuery.php │ │ ├── Chat.php │ │ ├── ChatInviteLink.php │ │ ├── ChatLocation.php │ │ ├── ChatMember.php │ │ ├── ChatMemberUpdated.php │ │ ├── ChatPermissions.php │ │ ├── ChatPhoto.php │ │ ├── ChosenInlineResult.php │ │ ├── Contact.php │ │ ├── Dice.php │ │ ├── Document.php │ │ ├── EncryptedCredentials.php │ │ ├── EncryptedPassportElement.php │ │ ├── File.php │ │ ├── ForceReply.php │ │ ├── Game.php │ │ ├── GameHighScore.php │ │ ├── InlineKeyboardButton.php │ │ ├── InlineKeyboardMarkup.php │ │ ├── InlineQuery.php │ │ ├── InlineQueryResult.php │ │ ├── InlineQueryResultArticle.php │ │ ├── InlineQueryResultAudio.php │ │ ├── InlineQueryResultCachedAudio.php │ │ ├── InlineQueryResultCachedDocument.php │ │ ├── InlineQueryResultCachedGif.php │ │ ├── InlineQueryResultCachedMpeg4Gif.php │ │ ├── InlineQueryResultCachedPhoto.php │ │ ├── InlineQueryResultCachedSticker.php │ │ ├── InlineQueryResultCachedVideo.php │ │ ├── InlineQueryResultCachedVoice.php │ │ ├── InlineQueryResultContact.php │ │ ├── InlineQueryResultDocument.php │ │ ├── InlineQueryResultGame.php │ │ ├── InlineQueryResultGif.php │ │ ├── InlineQueryResultLocation.php │ │ ├── InlineQueryResultMpeg4Gif.php │ │ ├── InlineQueryResultPhoto.php │ │ ├── InlineQueryResultVenue.php │ │ ├── InlineQueryResultVideo.php │ │ ├── InlineQueryResultVoice.php │ │ ├── InputContactMessageContent.php │ │ ├── InputFile.php │ │ ├── InputInvoiceMessageContent.php │ │ ├── InputLocationMessageContent.php │ │ ├── InputMedia.php │ │ ├── InputMediaAnimation.php │ │ ├── InputMediaAudio.php │ │ ├── InputMediaDocument.php │ │ ├── InputMediaPhoto.php │ │ ├── InputMediaVideo.php │ │ ├── InputMessageContent.php │ │ ├── InputTextMessageContent.php │ │ ├── InputVenueMessageContent.php │ │ ├── Invoice.php │ │ ├── KeyboardButton.php │ │ ├── KeyboardButtonPollType.php │ │ ├── LabeledPrice.php │ │ ├── Location.php │ │ ├── LoginUrl.php │ │ ├── MaskPosition.php │ │ ├── Message.php │ │ ├── MessageAutoDeleteTimerChanged.php │ │ ├── MessageEntity.php │ │ ├── MessageId.php │ │ ├── OrderInfo.php │ │ ├── PassportData.php │ │ ├── PassportElementError.php │ │ ├── PassportElementErrorDataField.php │ │ ├── PassportElementErrorFile.php │ │ ├── PassportElementErrorFiles.php │ │ ├── PassportElementErrorFrontSide.php │ │ ├── PassportElementErrorReverseSide.php │ │ ├── PassportElementErrorSelfie.php │ │ ├── PassportElementErrorTranslationFile.php │ │ ├── PassportElementErrorTranslationFiles.php │ │ ├── PassportElementErrorUnspecified.php │ │ ├── PassportFile.php │ │ ├── PhotoSize.php │ │ ├── Poll.php │ │ ├── PollAnswer.php │ │ ├── PollOption.php │ │ ├── PreCheckoutQuery.php │ │ ├── ProximityAlertTriggered.php │ │ ├── ReplyKeyboardMarkup.php │ │ ├── ReplyKeyboardRemove.php │ │ ├── ResponseParameters.php │ │ ├── ShippingAddress.php │ │ ├── ShippingOption.php │ │ ├── ShippingQuery.php │ │ ├── Sticker.php │ │ ├── StickerSet.php │ │ ├── SuccessfulPayment.php │ │ ├── Update.php │ │ ├── User.php │ │ ├── UserProfilePhotos.php │ │ ├── Venue.php │ │ ├── Video.php │ │ ├── VideoNote.php │ │ ├── Voice.php │ │ ├── VoiceChatEnded.php │ │ ├── VoiceChatParticipantsInvited.php │ │ ├── VoiceChatScheduled.php │ │ ├── VoiceChatStarted.php │ │ └── WebhookInfo.php └── bc │ ├── 0.x.php │ ├── 1.0.php │ ├── 1.2-types.php │ └── 1.2.php └── tests ├── TelegramHandler.php ├── filters.php └── test_flood.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/LICENSE -------------------------------------------------------------------------------- /PHPEasyGit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/PHPEasyGit.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/composer.json -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | novagram.gaetano.eu.org -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/compare.md -------------------------------------------------------------------------------- /docs/construct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/construct.md -------------------------------------------------------------------------------- /docs/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/database.md -------------------------------------------------------------------------------- /docs/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/docs.md -------------------------------------------------------------------------------- /docs/errors_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/errors_handling.md -------------------------------------------------------------------------------- /docs/handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/handling.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/objects.md -------------------------------------------------------------------------------- /docs/prototypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/prototypes.md -------------------------------------------------------------------------------- /docs/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/requests.md -------------------------------------------------------------------------------- /docs/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/start.md -------------------------------------------------------------------------------- /docs/types/Animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Animation.md -------------------------------------------------------------------------------- /docs/types/Audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Audio.md -------------------------------------------------------------------------------- /docs/types/CallbackGame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/CallbackGame.md -------------------------------------------------------------------------------- /docs/types/CallbackQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/CallbackQuery.md -------------------------------------------------------------------------------- /docs/types/Chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Chat.md -------------------------------------------------------------------------------- /docs/types/ChatMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/ChatMember.md -------------------------------------------------------------------------------- /docs/types/ChatPermissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/ChatPermissions.md -------------------------------------------------------------------------------- /docs/types/ChatPhoto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/ChatPhoto.md -------------------------------------------------------------------------------- /docs/types/ChosenInlineResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/ChosenInlineResult.md -------------------------------------------------------------------------------- /docs/types/Contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Contact.md -------------------------------------------------------------------------------- /docs/types/Dice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Dice.md -------------------------------------------------------------------------------- /docs/types/Document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Document.md -------------------------------------------------------------------------------- /docs/types/Game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Game.md -------------------------------------------------------------------------------- /docs/types/GameHighScore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/GameHighScore.md -------------------------------------------------------------------------------- /docs/types/InlineKeyboardButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineKeyboardButton.md -------------------------------------------------------------------------------- /docs/types/InlineKeyboardMarkup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineKeyboardMarkup.md -------------------------------------------------------------------------------- /docs/types/InlineQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQuery.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultArticle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultArticle.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultAudio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultAudio.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultCachedAudio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultCachedAudio.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultCachedDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultCachedDocument.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultCachedGif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultCachedGif.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultCachedMpeg4Gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultCachedMpeg4Gif.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultCachedPhoto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultCachedPhoto.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultCachedSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultCachedSticker.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultCachedVideo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultCachedVideo.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultCachedVoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultCachedVoice.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultContact.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultDocument.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultGame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultGame.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultGif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultGif.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultLocation.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultMpeg4Gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultMpeg4Gif.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultPhoto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultPhoto.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultVenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultVenue.md -------------------------------------------------------------------------------- /docs/types/InlineQueryResultVoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InlineQueryResultVoice.md -------------------------------------------------------------------------------- /docs/types/InputFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InputFile.md -------------------------------------------------------------------------------- /docs/types/InputMediaAnimation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InputMediaAnimation.md -------------------------------------------------------------------------------- /docs/types/InputMediaAudio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InputMediaAudio.md -------------------------------------------------------------------------------- /docs/types/InputMediaDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InputMediaDocument.md -------------------------------------------------------------------------------- /docs/types/InputMediaVideo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InputMediaVideo.md -------------------------------------------------------------------------------- /docs/types/InputMessageContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/InputMessageContent.md -------------------------------------------------------------------------------- /docs/types/Invoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Invoice.md -------------------------------------------------------------------------------- /docs/types/KeyboardButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/KeyboardButton.md -------------------------------------------------------------------------------- /docs/types/KeyboardButtonPollType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/KeyboardButtonPollType.md -------------------------------------------------------------------------------- /docs/types/LabeledPrice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/LabeledPrice.md -------------------------------------------------------------------------------- /docs/types/Location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Location.md -------------------------------------------------------------------------------- /docs/types/LoginUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/LoginUrl.md -------------------------------------------------------------------------------- /docs/types/MaskPosition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/MaskPosition.md -------------------------------------------------------------------------------- /docs/types/Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Message.md -------------------------------------------------------------------------------- /docs/types/MessageEntity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/MessageEntity.md -------------------------------------------------------------------------------- /docs/types/OrderInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/OrderInfo.md -------------------------------------------------------------------------------- /docs/types/PassportData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/PassportData.md -------------------------------------------------------------------------------- /docs/types/PhotoSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/PhotoSize.md -------------------------------------------------------------------------------- /docs/types/Poll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Poll.md -------------------------------------------------------------------------------- /docs/types/PollAnswer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/PollAnswer.md -------------------------------------------------------------------------------- /docs/types/PollOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/PollOption.md -------------------------------------------------------------------------------- /docs/types/PreCheckoutQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/PreCheckoutQuery.md -------------------------------------------------------------------------------- /docs/types/ReplyKeyboardMarkup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/ReplyKeyboardMarkup.md -------------------------------------------------------------------------------- /docs/types/ShippingAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/ShippingAddress.md -------------------------------------------------------------------------------- /docs/types/ShippingOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/ShippingOption.md -------------------------------------------------------------------------------- /docs/types/ShippingQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/ShippingQuery.md -------------------------------------------------------------------------------- /docs/types/Sticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Sticker.md -------------------------------------------------------------------------------- /docs/types/StickerSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/StickerSet.md -------------------------------------------------------------------------------- /docs/types/SuccessfulPayment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/SuccessfulPayment.md -------------------------------------------------------------------------------- /docs/types/Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Update.md -------------------------------------------------------------------------------- /docs/types/User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/User.md -------------------------------------------------------------------------------- /docs/types/UserProfilePhotos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/UserProfilePhotos.md -------------------------------------------------------------------------------- /docs/types/Venue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Venue.md -------------------------------------------------------------------------------- /docs/types/Video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Video.md -------------------------------------------------------------------------------- /docs/types/VideoNote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/VideoNote.md -------------------------------------------------------------------------------- /docs/types/Voice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/docs/types/Voice.md -------------------------------------------------------------------------------- /examples/echo_bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/examples/echo_bot.php -------------------------------------------------------------------------------- /examples/encoder_bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/examples/encoder_bot.php -------------------------------------------------------------------------------- /examples/error_handlers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/examples/error_handlers.php -------------------------------------------------------------------------------- /examples/ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/examples/ping.php -------------------------------------------------------------------------------- /examples/userbot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/examples/userbot.php -------------------------------------------------------------------------------- /src/NovaGram/BaseCallbackHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/BaseCallbackHandler.php -------------------------------------------------------------------------------- /src/NovaGram/BaseCommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/BaseCommandHandler.php -------------------------------------------------------------------------------- /src/NovaGram/BaseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/BaseHandler.php -------------------------------------------------------------------------------- /src/NovaGram/Bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/Bot.php -------------------------------------------------------------------------------- /src/NovaGram/CurlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/CurlException.php -------------------------------------------------------------------------------- /src/NovaGram/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/Database.php -------------------------------------------------------------------------------- /src/NovaGram/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/Dispatcher.php -------------------------------------------------------------------------------- /src/NovaGram/EntitiesParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/EntitiesParser.php -------------------------------------------------------------------------------- /src/NovaGram/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/Exception.php -------------------------------------------------------------------------------- /src/NovaGram/HandlersTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/HandlersTrait.php -------------------------------------------------------------------------------- /src/NovaGram/Methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/Methods.php -------------------------------------------------------------------------------- /src/NovaGram/PDOContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/PDOContainer.php -------------------------------------------------------------------------------- /src/NovaGram/TelegramLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/TelegramLogger.php -------------------------------------------------------------------------------- /src/NovaGram/UserBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/UserBot.php -------------------------------------------------------------------------------- /src/NovaGram/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/Utils.php -------------------------------------------------------------------------------- /src/NovaGram/WebLogin/JSLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/WebLogin/JSLogin.js -------------------------------------------------------------------------------- /src/NovaGram/WebLogin/method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/WebLogin/method.php -------------------------------------------------------------------------------- /src/NovaGram/conversations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/conversations.php -------------------------------------------------------------------------------- /src/NovaGram/dc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/dc.php -------------------------------------------------------------------------------- /src/NovaGram/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/helpers.php -------------------------------------------------------------------------------- /src/NovaGram/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/NovaGram/json.json -------------------------------------------------------------------------------- /src/Prototypes/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Prototypes/Exception.php -------------------------------------------------------------------------------- /src/Prototypes/Prototype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Prototypes/Prototype.php -------------------------------------------------------------------------------- /src/Prototypes/proto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Prototypes/proto.php -------------------------------------------------------------------------------- /src/Prototypes/simpleProto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Prototypes/simpleProto.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/BadGatewayException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/BadGatewayException.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/BadRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/BadRequestException.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/ConflictException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/ConflictException.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/Exception.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/ForbiddenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/ForbiddenException.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/MethodNotAllowedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/MethodNotAllowedException.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/NotFoundException.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/RequestEntityTooLargeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/RequestEntityTooLargeException.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/TooManyRequestsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/TooManyRequestsException.php -------------------------------------------------------------------------------- /src/Telegram/Exceptions/UnauthorizedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Exceptions/UnauthorizedException.php -------------------------------------------------------------------------------- /src/Telegram/ObjectsList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/ObjectsList.php -------------------------------------------------------------------------------- /src/Telegram/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Type.php -------------------------------------------------------------------------------- /src/Telegram/Types/Animation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Animation.php -------------------------------------------------------------------------------- /src/Telegram/Types/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Audio.php -------------------------------------------------------------------------------- /src/Telegram/Types/BotCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/BotCommand.php -------------------------------------------------------------------------------- /src/Telegram/Types/CallbackGame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/CallbackGame.php -------------------------------------------------------------------------------- /src/Telegram/Types/CallbackQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/CallbackQuery.php -------------------------------------------------------------------------------- /src/Telegram/Types/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Chat.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatInviteLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ChatInviteLink.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ChatLocation.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ChatMember.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatMemberUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ChatMemberUpdated.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ChatPermissions.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ChatPhoto.php -------------------------------------------------------------------------------- /src/Telegram/Types/ChosenInlineResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ChosenInlineResult.php -------------------------------------------------------------------------------- /src/Telegram/Types/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Contact.php -------------------------------------------------------------------------------- /src/Telegram/Types/Dice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Dice.php -------------------------------------------------------------------------------- /src/Telegram/Types/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Document.php -------------------------------------------------------------------------------- /src/Telegram/Types/EncryptedCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/EncryptedCredentials.php -------------------------------------------------------------------------------- /src/Telegram/Types/EncryptedPassportElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/EncryptedPassportElement.php -------------------------------------------------------------------------------- /src/Telegram/Types/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/File.php -------------------------------------------------------------------------------- /src/Telegram/Types/ForceReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ForceReply.php -------------------------------------------------------------------------------- /src/Telegram/Types/Game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Game.php -------------------------------------------------------------------------------- /src/Telegram/Types/GameHighScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/GameHighScore.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineKeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineKeyboardButton.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineKeyboardMarkup.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQuery.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResult.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultArticle.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultAudio.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultCachedAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultCachedAudio.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultCachedDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultCachedDocument.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultCachedGif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultCachedGif.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultCachedMpeg4Gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultCachedMpeg4Gif.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultCachedPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultCachedPhoto.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultCachedSticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultCachedSticker.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultCachedVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultCachedVideo.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultCachedVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultCachedVoice.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultContact.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultDocument.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultGame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultGame.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultGif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultGif.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultLocation.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultMpeg4Gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultMpeg4Gif.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultPhoto.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultVenue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultVenue.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultVideo.php -------------------------------------------------------------------------------- /src/Telegram/Types/InlineQueryResultVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InlineQueryResultVoice.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputContactMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputContactMessageContent.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputFile.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputInvoiceMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputInvoiceMessageContent.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputLocationMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputLocationMessageContent.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputMedia.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMediaAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputMediaAnimation.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMediaAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputMediaAudio.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMediaDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputMediaDocument.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMediaPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputMediaPhoto.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMediaVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputMediaVideo.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputMessageContent.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputTextMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputTextMessageContent.php -------------------------------------------------------------------------------- /src/Telegram/Types/InputVenueMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/InputVenueMessageContent.php -------------------------------------------------------------------------------- /src/Telegram/Types/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Invoice.php -------------------------------------------------------------------------------- /src/Telegram/Types/KeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/KeyboardButton.php -------------------------------------------------------------------------------- /src/Telegram/Types/KeyboardButtonPollType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/KeyboardButtonPollType.php -------------------------------------------------------------------------------- /src/Telegram/Types/LabeledPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/LabeledPrice.php -------------------------------------------------------------------------------- /src/Telegram/Types/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Location.php -------------------------------------------------------------------------------- /src/Telegram/Types/LoginUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/LoginUrl.php -------------------------------------------------------------------------------- /src/Telegram/Types/MaskPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/MaskPosition.php -------------------------------------------------------------------------------- /src/Telegram/Types/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Message.php -------------------------------------------------------------------------------- /src/Telegram/Types/MessageAutoDeleteTimerChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/MessageAutoDeleteTimerChanged.php -------------------------------------------------------------------------------- /src/Telegram/Types/MessageEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/MessageEntity.php -------------------------------------------------------------------------------- /src/Telegram/Types/MessageId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/MessageId.php -------------------------------------------------------------------------------- /src/Telegram/Types/OrderInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/OrderInfo.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportData.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementError.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementErrorDataField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementErrorDataField.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementErrorFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementErrorFile.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementErrorFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementErrorFiles.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementErrorFrontSide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementErrorFrontSide.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementErrorReverseSide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementErrorReverseSide.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementErrorSelfie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementErrorSelfie.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementErrorTranslationFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementErrorTranslationFile.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementErrorTranslationFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementErrorTranslationFiles.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportElementErrorUnspecified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportElementErrorUnspecified.php -------------------------------------------------------------------------------- /src/Telegram/Types/PassportFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PassportFile.php -------------------------------------------------------------------------------- /src/Telegram/Types/PhotoSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PhotoSize.php -------------------------------------------------------------------------------- /src/Telegram/Types/Poll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Poll.php -------------------------------------------------------------------------------- /src/Telegram/Types/PollAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PollAnswer.php -------------------------------------------------------------------------------- /src/Telegram/Types/PollOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PollOption.php -------------------------------------------------------------------------------- /src/Telegram/Types/PreCheckoutQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/PreCheckoutQuery.php -------------------------------------------------------------------------------- /src/Telegram/Types/ProximityAlertTriggered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ProximityAlertTriggered.php -------------------------------------------------------------------------------- /src/Telegram/Types/ReplyKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ReplyKeyboardMarkup.php -------------------------------------------------------------------------------- /src/Telegram/Types/ReplyKeyboardRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ReplyKeyboardRemove.php -------------------------------------------------------------------------------- /src/Telegram/Types/ResponseParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ResponseParameters.php -------------------------------------------------------------------------------- /src/Telegram/Types/ShippingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ShippingAddress.php -------------------------------------------------------------------------------- /src/Telegram/Types/ShippingOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ShippingOption.php -------------------------------------------------------------------------------- /src/Telegram/Types/ShippingQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/ShippingQuery.php -------------------------------------------------------------------------------- /src/Telegram/Types/Sticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Sticker.php -------------------------------------------------------------------------------- /src/Telegram/Types/StickerSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/StickerSet.php -------------------------------------------------------------------------------- /src/Telegram/Types/SuccessfulPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/SuccessfulPayment.php -------------------------------------------------------------------------------- /src/Telegram/Types/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Update.php -------------------------------------------------------------------------------- /src/Telegram/Types/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/User.php -------------------------------------------------------------------------------- /src/Telegram/Types/UserProfilePhotos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/UserProfilePhotos.php -------------------------------------------------------------------------------- /src/Telegram/Types/Venue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Venue.php -------------------------------------------------------------------------------- /src/Telegram/Types/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Video.php -------------------------------------------------------------------------------- /src/Telegram/Types/VideoNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/VideoNote.php -------------------------------------------------------------------------------- /src/Telegram/Types/Voice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/Voice.php -------------------------------------------------------------------------------- /src/Telegram/Types/VoiceChatEnded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/VoiceChatEnded.php -------------------------------------------------------------------------------- /src/Telegram/Types/VoiceChatParticipantsInvited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/VoiceChatParticipantsInvited.php -------------------------------------------------------------------------------- /src/Telegram/Types/VoiceChatScheduled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/VoiceChatScheduled.php -------------------------------------------------------------------------------- /src/Telegram/Types/VoiceChatStarted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/VoiceChatStarted.php -------------------------------------------------------------------------------- /src/Telegram/Types/WebhookInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/Telegram/Types/WebhookInfo.php -------------------------------------------------------------------------------- /src/bc/0.x.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/bc/0.x.php -------------------------------------------------------------------------------- /src/bc/1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/bc/1.0.php -------------------------------------------------------------------------------- /src/bc/1.2-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/bc/1.2-types.php -------------------------------------------------------------------------------- /src/bc/1.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/src/bc/1.2.php -------------------------------------------------------------------------------- /tests/TelegramHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/tests/TelegramHandler.php -------------------------------------------------------------------------------- /tests/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/tests/filters.php -------------------------------------------------------------------------------- /tests/test_flood.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrtdev/NovaGram/HEAD/tests/test_flood.php --------------------------------------------------------------------------------