├── .dockerignore ├── .env.example ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── docker-compose.yml ├── phpunit.xml ├── src └── Zanzara │ ├── Config.php │ ├── Context.php │ ├── ConversationManager.php │ ├── Exception │ └── ZanzaraException.php │ ├── Listener │ ├── Listener.php │ ├── ListenerCollector.php │ └── ListenerResolver.php │ ├── MessageQueue.php │ ├── Middleware │ ├── MiddlewareCollector.php │ ├── MiddlewareInterface.php │ └── MiddlewareNode.php │ ├── Support │ └── CallableResolver.php │ ├── Telegram │ ├── Telegram.php │ ├── TelegramTrait.php │ └── Type │ │ ├── BotCommandScope.php │ │ ├── BotCommandScopeAllChatAdministrators.php │ │ ├── BotCommandScopeAllGroupChats.php │ │ ├── BotCommandScopeAllPrivateChats.php │ │ ├── BotCommandScopeChat.php │ │ ├── BotCommandScopeChatAdministrators.php │ │ ├── BotCommandScopeChatMember.php │ │ ├── BotCommandScopeDefault.php │ │ ├── CallbackGame.php │ │ ├── CallbackQuery.php │ │ ├── ChannelPost.php │ │ ├── Chat.php │ │ ├── ChatAdministratorRights.php │ │ ├── ChatInviteLink.php │ │ ├── ChatJoinRequest.php │ │ ├── ChatLocation.php │ │ ├── ChatMember.php │ │ ├── ChatMemberUpdated.php │ │ ├── ChatPermissions.php │ │ ├── ChatPhoto.php │ │ ├── ChatShared.php │ │ ├── ChosenInlineResult.php │ │ ├── EditedChannelPost.php │ │ ├── EditedMessage.php │ │ ├── File │ │ ├── Animation.php │ │ ├── Audio.php │ │ ├── Contact.php │ │ ├── Document.php │ │ ├── File.php │ │ ├── Location.php │ │ ├── MaskPosition.php │ │ ├── PhotoSize.php │ │ ├── Sticker.php │ │ ├── StickerSet.php │ │ ├── UserProfilePhotos.php │ │ ├── Venue.php │ │ ├── Video.php │ │ ├── VideoNote.php │ │ └── Voice.php │ │ ├── Forum │ │ ├── ForumTopic.php │ │ ├── ForumTopicClosed.php │ │ ├── ForumTopicCreated.php │ │ ├── ForumTopicEdited.php │ │ ├── ForumTopicReopened.php │ │ ├── GeneralForumTopicHidden.php │ │ ├── GeneralForumTopicUnhidden.php │ │ └── WriteAccessAllowed.php │ │ ├── Game │ │ ├── Game.php │ │ └── GameHighScore.php │ │ ├── InlineQuery.php │ │ ├── InlineQueryResult │ │ ├── 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 │ │ ├── Input │ │ ├── InputContactMessageContent.php │ │ ├── InputFile.php │ │ ├── InputLocationMessageContent.php │ │ ├── InputMediaAnimation.php │ │ ├── InputMediaAudio.php │ │ ├── InputMediaDocument.php │ │ ├── InputMediaPhoto.php │ │ ├── InputMediaVideo.php │ │ ├── InputMessageContent.php │ │ ├── InputTextMessageContent.php │ │ └── InputVenueMessageContent.php │ │ ├── Keyboard │ │ ├── InlineKeyboardButton.php │ │ ├── InlineKeyboardMarkup.php │ │ ├── KeyboardButton.php │ │ ├── KeyboardButtonPollType.php │ │ ├── KeyboardButtonRequestChat.php │ │ ├── KeyboardButtonRequestUser.php │ │ ├── ReplyKeyboardMarkup.php │ │ └── ReplyKeyboardRemove.php │ │ ├── MenuButton.php │ │ ├── Message.php │ │ ├── MessageAutoDeleteTimerChanged.php │ │ ├── MessageEntity.php │ │ ├── MessageId.php │ │ ├── Miscellaneous │ │ ├── BotCommand.php │ │ ├── BotDescription.php │ │ ├── BotShortDescription.php │ │ ├── Dice.php │ │ ├── ForceReply.php │ │ ├── InputSticker.php │ │ └── LoginUrl.php │ │ ├── Passport │ │ ├── EncryptedCredentials.php │ │ ├── EncryptedPassportElement.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 │ │ ├── Poll │ │ ├── Poll.php │ │ ├── PollAnswer.php │ │ └── PollOption.php │ │ ├── ProximityAlertTriggered.php │ │ ├── ReplyToMessage.php │ │ ├── Response │ │ ├── ResponseParameters.php │ │ └── TelegramException.php │ │ ├── Shipping │ │ ├── InputInvoiceMessageContent.php │ │ ├── Invoice.php │ │ ├── LabeledPrice.php │ │ ├── OrderInfo.php │ │ ├── PreCheckoutQuery.php │ │ ├── ShippingAddress.php │ │ ├── ShippingOption.php │ │ ├── ShippingQuery.php │ │ ├── SuccessfulPayment.php │ │ └── currencies.json │ │ ├── Update.php │ │ ├── User.php │ │ ├── UserShared.php │ │ ├── VideoChatEnded.php │ │ ├── VideoChatParticipantsInvited.php │ │ ├── VideoChatScheduled.php │ │ ├── VideoChatStarted.php │ │ ├── WebApp │ │ ├── SentWebAppMessage.php │ │ ├── WebAppData.php │ │ └── WebAppInfo.php │ │ └── Webhook │ │ └── WebhookInfo.php │ ├── UpdateMode │ ├── BaseWebhook.php │ ├── Polling.php │ ├── ReactPHPWebhook.php │ ├── UpdateMode.php │ ├── UpdateModeInterface.php │ └── Webhook.php │ ├── Zanzara.php │ ├── ZanzaraCache.php │ ├── ZanzaraLogger.php │ └── ZanzaraMapper.php ├── tests ├── Conversation │ └── ConversationTest.php ├── CustomContext │ ├── CustomContext.php │ └── CustomContextTest.php ├── JsonMapper │ ├── Dummy.php │ ├── Issue │ │ ├── Element │ │ │ └── Element.php │ │ ├── JsonMapperTest.php │ │ └── RootObject.php │ ├── ZanzaraMapperTest.php │ ├── many.json │ └── one.json ├── Listener │ ├── CallbackQueryTest.php │ ├── ChannelPostTest.php │ ├── CommandTest.php │ ├── FileTest.php │ ├── FilterTest.php │ ├── InlineQueryTest.php │ ├── ListenerCallbackTest.php │ ├── MessageTest.php │ ├── PollTest.php │ ├── PreCheckoutQueryTest.php │ ├── RegexTest.php │ ├── SuccessfulPaymentTest.php │ └── UpdateTest.php ├── Logger │ └── TestLogger.php ├── Middleware │ ├── FirstMiddleware.php │ ├── FourthMiddleware.php │ ├── MiddlewareTest.php │ ├── OOPMiddlewareTest.php │ └── ThirdMiddleware.php ├── PromiseWrapper │ ├── TestMultiplePromise.php │ ├── TestPromiseWrapper.php │ └── ZanzaraPromise.php ├── Telegram │ ├── TestBrowser.php │ ├── TestTelegram.php │ └── bottest │ │ └── sendmessage │ │ └── index.php ├── bootstrap.php ├── update_types │ ├── animation.json │ ├── callback_query.json │ ├── cb_query_by_inline_query.json │ ├── channel_post.json │ ├── chosen_inline_result.json │ ├── command.json │ ├── command_group.json │ ├── command_parameters.json │ ├── contact.json │ ├── document.json │ ├── edited_channel_post.json │ ├── edited_message.json │ ├── forward_from_message.json │ ├── inline_query.json │ ├── location.json │ ├── message.json │ ├── message_entities.json │ ├── message_zero.json │ ├── photo.json │ ├── pre_checkout_query.json │ ├── reply_to_message.json │ ├── sent_poll.json │ ├── sticker.json │ ├── successful_payment.json │ ├── video.json │ ├── voice.json │ └── voted_poll.json └── zen-circus │ ├── bot_test.php │ ├── bulk_test.php │ ├── cache_test.php │ ├── conversation │ ├── cb_query_conversation.php │ ├── conversation_test.php │ ├── oop_conversation_test.php │ └── skip_listeners_conversation.php │ ├── doc │ ├── doc.md │ └── parser.php │ ├── error_test.php │ ├── file │ ├── file.txt │ ├── photo.jpeg │ └── video.mp4 │ ├── local-api-server │ ├── bot.php │ ├── docker-compose.yml │ └── env.example │ ├── php8 │ ├── polling.php │ └── webhook.php │ ├── proxy_test.php │ ├── reactphp │ └── server.php │ ├── reply_message_conversation_test.php │ ├── sendphoto_return_message │ └── bot.php │ ├── set_webhook.php │ ├── test_editmessagetext.php │ ├── update_test.php │ ├── webhook_test.php │ └── webhook_test_error.php └── zanzara_logo.png /.dockerignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | BOT_TOKEN= -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | .phpunit.result.cache 4 | *.iml 5 | .env 6 | target -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Zanzara/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Config.php -------------------------------------------------------------------------------- /src/Zanzara/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Context.php -------------------------------------------------------------------------------- /src/Zanzara/ConversationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/ConversationManager.php -------------------------------------------------------------------------------- /src/Zanzara/Exception/ZanzaraException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Exception/ZanzaraException.php -------------------------------------------------------------------------------- /src/Zanzara/Listener/Listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Listener/Listener.php -------------------------------------------------------------------------------- /src/Zanzara/Listener/ListenerCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Listener/ListenerCollector.php -------------------------------------------------------------------------------- /src/Zanzara/Listener/ListenerResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Listener/ListenerResolver.php -------------------------------------------------------------------------------- /src/Zanzara/MessageQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/MessageQueue.php -------------------------------------------------------------------------------- /src/Zanzara/Middleware/MiddlewareCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Middleware/MiddlewareCollector.php -------------------------------------------------------------------------------- /src/Zanzara/Middleware/MiddlewareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Middleware/MiddlewareInterface.php -------------------------------------------------------------------------------- /src/Zanzara/Middleware/MiddlewareNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Middleware/MiddlewareNode.php -------------------------------------------------------------------------------- /src/Zanzara/Support/CallableResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Support/CallableResolver.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Telegram.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/TelegramTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/TelegramTrait.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/BotCommandScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/BotCommandScope.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/BotCommandScopeAllChatAdministrators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/BotCommandScopeAllChatAdministrators.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/BotCommandScopeAllGroupChats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/BotCommandScopeAllGroupChats.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/BotCommandScopeAllPrivateChats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/BotCommandScopeAllPrivateChats.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/BotCommandScopeChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/BotCommandScopeChat.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/BotCommandScopeChatAdministrators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/BotCommandScopeChatAdministrators.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/BotCommandScopeChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/BotCommandScopeChatMember.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/BotCommandScopeDefault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/BotCommandScopeDefault.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/CallbackGame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/CallbackGame.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/CallbackQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/CallbackQuery.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChannelPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChannelPost.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Chat.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChatAdministratorRights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChatAdministratorRights.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChatInviteLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChatInviteLink.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChatJoinRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChatJoinRequest.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChatLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChatLocation.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChatMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChatMember.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChatMemberUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChatMemberUpdated.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChatPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChatPermissions.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChatPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChatPhoto.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChatShared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChatShared.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ChosenInlineResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ChosenInlineResult.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/EditedChannelPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/EditedChannelPost.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/EditedMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/EditedMessage.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/Animation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/Animation.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/Audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/Audio.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/Contact.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/Document.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/File.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/Location.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/MaskPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/MaskPosition.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/PhotoSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/PhotoSize.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/Sticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/Sticker.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/StickerSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/StickerSet.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/UserProfilePhotos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/UserProfilePhotos.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/Venue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/Venue.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/Video.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/VideoNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/VideoNote.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/File/Voice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/File/Voice.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Forum/ForumTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Forum/ForumTopic.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Forum/ForumTopicClosed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Forum/ForumTopicClosed.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Forum/ForumTopicCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Forum/ForumTopicCreated.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Forum/ForumTopicEdited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Forum/ForumTopicEdited.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Forum/ForumTopicReopened.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Forum/ForumTopicReopened.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Forum/GeneralForumTopicHidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Forum/GeneralForumTopicHidden.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Forum/GeneralForumTopicUnhidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Forum/GeneralForumTopicUnhidden.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Forum/WriteAccessAllowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Forum/WriteAccessAllowed.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Game/Game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Game/Game.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Game/GameHighScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Game/GameHighScore.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQuery.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResult.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultArticle.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultAudio.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedAudio.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedDocument.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedGif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedGif.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedMpeg4Gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedMpeg4Gif.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedPhoto.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedSticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedSticker.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedVideo.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultCachedVoice.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultContact.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultDocument.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultGame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultGame.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultGif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultGif.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultLocation.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultMpeg4Gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultMpeg4Gif.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultPhoto.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultVenue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultVenue.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultVideo.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/InlineQueryResult/InlineQueryResultVoice.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputContactMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputContactMessageContent.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputFile.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputLocationMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputLocationMessageContent.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputMediaAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputMediaAnimation.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputMediaAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputMediaAudio.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputMediaDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputMediaDocument.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputMediaPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputMediaPhoto.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputMediaVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputMediaVideo.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputMessageContent.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputTextMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputTextMessageContent.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Input/InputVenueMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Input/InputVenueMessageContent.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Keyboard/InlineKeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Keyboard/InlineKeyboardButton.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Keyboard/InlineKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Keyboard/InlineKeyboardMarkup.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Keyboard/KeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Keyboard/KeyboardButton.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Keyboard/KeyboardButtonPollType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Keyboard/KeyboardButtonPollType.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Keyboard/KeyboardButtonRequestChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Keyboard/KeyboardButtonRequestChat.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Keyboard/KeyboardButtonRequestUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Keyboard/KeyboardButtonRequestUser.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Keyboard/ReplyKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Keyboard/ReplyKeyboardMarkup.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Keyboard/ReplyKeyboardRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Keyboard/ReplyKeyboardRemove.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/MenuButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/MenuButton.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Message.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/MessageAutoDeleteTimerChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/MessageAutoDeleteTimerChanged.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/MessageEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/MessageEntity.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/MessageId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/MessageId.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Miscellaneous/BotCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Miscellaneous/BotCommand.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Miscellaneous/BotDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Miscellaneous/BotDescription.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Miscellaneous/BotShortDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Miscellaneous/BotShortDescription.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Miscellaneous/Dice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Miscellaneous/Dice.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Miscellaneous/ForceReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Miscellaneous/ForceReply.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Miscellaneous/InputSticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Miscellaneous/InputSticker.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Miscellaneous/LoginUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Miscellaneous/LoginUrl.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/EncryptedCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/EncryptedCredentials.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/EncryptedPassportElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/EncryptedPassportElement.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportData.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementError.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementErrorDataField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementErrorDataField.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementErrorFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementErrorFile.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementErrorFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementErrorFiles.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementErrorFrontSide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementErrorFrontSide.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementErrorReverseSide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementErrorReverseSide.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementErrorSelfie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementErrorSelfie.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementErrorTranslationFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementErrorTranslationFile.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementErrorTranslationFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementErrorTranslationFiles.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportElementErrorUnspecified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportElementErrorUnspecified.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Passport/PassportFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Passport/PassportFile.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Poll/Poll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Poll/Poll.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Poll/PollAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Poll/PollAnswer.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Poll/PollOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Poll/PollOption.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ProximityAlertTriggered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ProximityAlertTriggered.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/ReplyToMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/ReplyToMessage.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Response/ResponseParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Response/ResponseParameters.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Response/TelegramException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Response/TelegramException.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/InputInvoiceMessageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/InputInvoiceMessageContent.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/Invoice.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/LabeledPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/LabeledPrice.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/OrderInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/OrderInfo.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/PreCheckoutQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/PreCheckoutQuery.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/ShippingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/ShippingAddress.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/ShippingOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/ShippingOption.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/ShippingQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/ShippingQuery.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/SuccessfulPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/SuccessfulPayment.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Shipping/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Shipping/currencies.json -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Update.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/User.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/UserShared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/UserShared.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/VideoChatEnded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/VideoChatEnded.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/VideoChatParticipantsInvited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/VideoChatParticipantsInvited.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/VideoChatScheduled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/VideoChatScheduled.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/VideoChatStarted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/VideoChatStarted.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/WebApp/SentWebAppMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/WebApp/SentWebAppMessage.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/WebApp/WebAppData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/WebApp/WebAppData.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/WebApp/WebAppInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/WebApp/WebAppInfo.php -------------------------------------------------------------------------------- /src/Zanzara/Telegram/Type/Webhook/WebhookInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Telegram/Type/Webhook/WebhookInfo.php -------------------------------------------------------------------------------- /src/Zanzara/UpdateMode/BaseWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/UpdateMode/BaseWebhook.php -------------------------------------------------------------------------------- /src/Zanzara/UpdateMode/Polling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/UpdateMode/Polling.php -------------------------------------------------------------------------------- /src/Zanzara/UpdateMode/ReactPHPWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/UpdateMode/ReactPHPWebhook.php -------------------------------------------------------------------------------- /src/Zanzara/UpdateMode/UpdateMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/UpdateMode/UpdateMode.php -------------------------------------------------------------------------------- /src/Zanzara/UpdateMode/UpdateModeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/UpdateMode/UpdateModeInterface.php -------------------------------------------------------------------------------- /src/Zanzara/UpdateMode/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/UpdateMode/Webhook.php -------------------------------------------------------------------------------- /src/Zanzara/Zanzara.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/Zanzara.php -------------------------------------------------------------------------------- /src/Zanzara/ZanzaraCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/ZanzaraCache.php -------------------------------------------------------------------------------- /src/Zanzara/ZanzaraLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/ZanzaraLogger.php -------------------------------------------------------------------------------- /src/Zanzara/ZanzaraMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/src/Zanzara/ZanzaraMapper.php -------------------------------------------------------------------------------- /tests/Conversation/ConversationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Conversation/ConversationTest.php -------------------------------------------------------------------------------- /tests/CustomContext/CustomContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/CustomContext/CustomContext.php -------------------------------------------------------------------------------- /tests/CustomContext/CustomContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/CustomContext/CustomContextTest.php -------------------------------------------------------------------------------- /tests/JsonMapper/Dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/JsonMapper/Dummy.php -------------------------------------------------------------------------------- /tests/JsonMapper/Issue/Element/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/JsonMapper/Issue/Element/Element.php -------------------------------------------------------------------------------- /tests/JsonMapper/Issue/JsonMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/JsonMapper/Issue/JsonMapperTest.php -------------------------------------------------------------------------------- /tests/JsonMapper/Issue/RootObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/JsonMapper/Issue/RootObject.php -------------------------------------------------------------------------------- /tests/JsonMapper/ZanzaraMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/JsonMapper/ZanzaraMapperTest.php -------------------------------------------------------------------------------- /tests/JsonMapper/many.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/JsonMapper/many.json -------------------------------------------------------------------------------- /tests/JsonMapper/one.json: -------------------------------------------------------------------------------- 1 | { 2 | "field": "Scott" 3 | } -------------------------------------------------------------------------------- /tests/Listener/CallbackQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/CallbackQueryTest.php -------------------------------------------------------------------------------- /tests/Listener/ChannelPostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/ChannelPostTest.php -------------------------------------------------------------------------------- /tests/Listener/CommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/CommandTest.php -------------------------------------------------------------------------------- /tests/Listener/FileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/FileTest.php -------------------------------------------------------------------------------- /tests/Listener/FilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/FilterTest.php -------------------------------------------------------------------------------- /tests/Listener/InlineQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/InlineQueryTest.php -------------------------------------------------------------------------------- /tests/Listener/ListenerCallbackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/ListenerCallbackTest.php -------------------------------------------------------------------------------- /tests/Listener/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/MessageTest.php -------------------------------------------------------------------------------- /tests/Listener/PollTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/PollTest.php -------------------------------------------------------------------------------- /tests/Listener/PreCheckoutQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/PreCheckoutQueryTest.php -------------------------------------------------------------------------------- /tests/Listener/RegexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/RegexTest.php -------------------------------------------------------------------------------- /tests/Listener/SuccessfulPaymentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/SuccessfulPaymentTest.php -------------------------------------------------------------------------------- /tests/Listener/UpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Listener/UpdateTest.php -------------------------------------------------------------------------------- /tests/Logger/TestLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Logger/TestLogger.php -------------------------------------------------------------------------------- /tests/Middleware/FirstMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Middleware/FirstMiddleware.php -------------------------------------------------------------------------------- /tests/Middleware/FourthMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Middleware/FourthMiddleware.php -------------------------------------------------------------------------------- /tests/Middleware/MiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Middleware/MiddlewareTest.php -------------------------------------------------------------------------------- /tests/Middleware/OOPMiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Middleware/OOPMiddlewareTest.php -------------------------------------------------------------------------------- /tests/Middleware/ThirdMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Middleware/ThirdMiddleware.php -------------------------------------------------------------------------------- /tests/PromiseWrapper/TestMultiplePromise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/PromiseWrapper/TestMultiplePromise.php -------------------------------------------------------------------------------- /tests/PromiseWrapper/TestPromiseWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/PromiseWrapper/TestPromiseWrapper.php -------------------------------------------------------------------------------- /tests/PromiseWrapper/ZanzaraPromise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/PromiseWrapper/ZanzaraPromise.php -------------------------------------------------------------------------------- /tests/Telegram/TestBrowser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Telegram/TestBrowser.php -------------------------------------------------------------------------------- /tests/Telegram/TestTelegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Telegram/TestTelegram.php -------------------------------------------------------------------------------- /tests/Telegram/bottest/sendmessage/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/Telegram/bottest/sendmessage/index.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/update_types/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/animation.json -------------------------------------------------------------------------------- /tests/update_types/callback_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/callback_query.json -------------------------------------------------------------------------------- /tests/update_types/cb_query_by_inline_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/cb_query_by_inline_query.json -------------------------------------------------------------------------------- /tests/update_types/channel_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/channel_post.json -------------------------------------------------------------------------------- /tests/update_types/chosen_inline_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/chosen_inline_result.json -------------------------------------------------------------------------------- /tests/update_types/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/command.json -------------------------------------------------------------------------------- /tests/update_types/command_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/command_group.json -------------------------------------------------------------------------------- /tests/update_types/command_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/command_parameters.json -------------------------------------------------------------------------------- /tests/update_types/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/contact.json -------------------------------------------------------------------------------- /tests/update_types/document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/document.json -------------------------------------------------------------------------------- /tests/update_types/edited_channel_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/edited_channel_post.json -------------------------------------------------------------------------------- /tests/update_types/edited_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/edited_message.json -------------------------------------------------------------------------------- /tests/update_types/forward_from_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/forward_from_message.json -------------------------------------------------------------------------------- /tests/update_types/inline_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/inline_query.json -------------------------------------------------------------------------------- /tests/update_types/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/location.json -------------------------------------------------------------------------------- /tests/update_types/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/message.json -------------------------------------------------------------------------------- /tests/update_types/message_entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/message_entities.json -------------------------------------------------------------------------------- /tests/update_types/message_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/message_zero.json -------------------------------------------------------------------------------- /tests/update_types/photo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/photo.json -------------------------------------------------------------------------------- /tests/update_types/pre_checkout_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/pre_checkout_query.json -------------------------------------------------------------------------------- /tests/update_types/reply_to_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/reply_to_message.json -------------------------------------------------------------------------------- /tests/update_types/sent_poll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/sent_poll.json -------------------------------------------------------------------------------- /tests/update_types/sticker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/sticker.json -------------------------------------------------------------------------------- /tests/update_types/successful_payment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/successful_payment.json -------------------------------------------------------------------------------- /tests/update_types/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/video.json -------------------------------------------------------------------------------- /tests/update_types/voice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/voice.json -------------------------------------------------------------------------------- /tests/update_types/voted_poll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/update_types/voted_poll.json -------------------------------------------------------------------------------- /tests/zen-circus/bot_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/bot_test.php -------------------------------------------------------------------------------- /tests/zen-circus/bulk_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/bulk_test.php -------------------------------------------------------------------------------- /tests/zen-circus/cache_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/cache_test.php -------------------------------------------------------------------------------- /tests/zen-circus/conversation/cb_query_conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/conversation/cb_query_conversation.php -------------------------------------------------------------------------------- /tests/zen-circus/conversation/conversation_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/conversation/conversation_test.php -------------------------------------------------------------------------------- /tests/zen-circus/conversation/oop_conversation_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/conversation/oop_conversation_test.php -------------------------------------------------------------------------------- /tests/zen-circus/conversation/skip_listeners_conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/conversation/skip_listeners_conversation.php -------------------------------------------------------------------------------- /tests/zen-circus/doc/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/doc/doc.md -------------------------------------------------------------------------------- /tests/zen-circus/doc/parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/doc/parser.php -------------------------------------------------------------------------------- /tests/zen-circus/error_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/error_test.php -------------------------------------------------------------------------------- /tests/zen-circus/file/file.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /tests/zen-circus/file/photo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/file/photo.jpeg -------------------------------------------------------------------------------- /tests/zen-circus/file/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/file/video.mp4 -------------------------------------------------------------------------------- /tests/zen-circus/local-api-server/bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/local-api-server/bot.php -------------------------------------------------------------------------------- /tests/zen-circus/local-api-server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/local-api-server/docker-compose.yml -------------------------------------------------------------------------------- /tests/zen-circus/local-api-server/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/local-api-server/env.example -------------------------------------------------------------------------------- /tests/zen-circus/php8/polling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/php8/polling.php -------------------------------------------------------------------------------- /tests/zen-circus/php8/webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/php8/webhook.php -------------------------------------------------------------------------------- /tests/zen-circus/proxy_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/proxy_test.php -------------------------------------------------------------------------------- /tests/zen-circus/reactphp/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/reactphp/server.php -------------------------------------------------------------------------------- /tests/zen-circus/reply_message_conversation_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/reply_message_conversation_test.php -------------------------------------------------------------------------------- /tests/zen-circus/sendphoto_return_message/bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/sendphoto_return_message/bot.php -------------------------------------------------------------------------------- /tests/zen-circus/set_webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/set_webhook.php -------------------------------------------------------------------------------- /tests/zen-circus/test_editmessagetext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/test_editmessagetext.php -------------------------------------------------------------------------------- /tests/zen-circus/update_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/update_test.php -------------------------------------------------------------------------------- /tests/zen-circus/webhook_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/webhook_test.php -------------------------------------------------------------------------------- /tests/zen-circus/webhook_test_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/tests/zen-circus/webhook_test_error.php -------------------------------------------------------------------------------- /zanzara_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badfarm/zanzara/HEAD/zanzara_logo.png --------------------------------------------------------------------------------