gitextract_qf0nzb7c/ ├── .gitignore ├── .styleci.yml ├── changelog.md ├── composer.json ├── config/ │ └── telegram.php ├── database/ │ └── migrations/ │ ├── 2021_06_14_171118_create_telegram_bot_structure.php │ ├── 2022_02_18_175100_update_to_0.75.0.php │ ├── 2022_04_24_175700_update_to_0.77.0.php │ ├── 2022_10_04_221900_update_to_0.78.0.php │ ├── 2022_11_11_130500_update_to_0.80.0.php │ ├── 2023_05-07_101600_update_to_0.81.0.php │ └── sql/ │ ├── 0.74.0-0.75.0.sql │ ├── 0.76.1-0.77.0.sql │ ├── 0.77.1-0.78.0.sql │ ├── 0.79.0-0.80.0.sql │ ├── 0.80.0-0.81.0.sql │ └── structure-0.73.0.sql ├── license.md ├── phpunit.xml ├── readme.md ├── routes/ │ └── telegram.php └── src/ ├── Console/ │ └── Commands/ │ ├── GeneratorCommand.php │ ├── MakeTelegramCommand.php │ ├── TelegramCloseCommand.php │ ├── TelegramDeleteWebhookCommand.php │ ├── TelegramFetchCommand.php │ ├── TelegramLogoutCommand.php │ ├── TelegramPublishCommand.php │ ├── TelegramSetWebhookCommand.php │ └── stubs/ │ ├── example-start-command.stub │ └── telegram-command.stub ├── Facades/ │ ├── CallbackButton.php │ └── Telegram.php ├── Factories/ │ └── CallbackButton.php ├── Http/ │ └── Middleware/ │ └── TrustTelegramNetwork.php ├── LaravelTelegramBot.php ├── Telegram/ │ ├── Commands/ │ │ ├── CallbackqueryCommand.php │ │ └── GenericmessageCommand.php │ ├── Conversation/ │ │ ├── ConversationWrapper.php │ │ └── LeadsConversation.php │ ├── InlineKeyboardButton/ │ │ ├── CallbackPayload.php │ │ └── RemembersCallbackPayload.php │ └── UsesEffectiveEntities.php └── TelegramServiceProvider.php