├── .gitignore ├── LICENSE ├── README.md ├── app ├── commands │ ├── BalanceCommand.php │ ├── CheckmeCommand.php │ ├── GenericmessageCommand.php │ ├── HelpCommand.php │ ├── LeftchatmemberCommand.php │ ├── NewchatmembersCommand.php │ ├── ReferrallinkCommand.php │ ├── SocialmediaCommand.php │ ├── StartCampaignCommand.php │ ├── StartCommand.php │ └── SupportCommand.php ├── config │ └── bot.php ├── core │ ├── CatBot.php │ ├── CatBotConfig.php │ ├── CatBotDB.php │ └── CatBotTelegram.php ├── db │ ├── campaign.sql │ └── structure.sql ├── domain │ ├── Campaign.php │ ├── CampaignDBInterface.php │ ├── CampaignHelper.php │ └── CampaignService.php └── utils │ ├── BotDevelopmentHelper.php │ ├── CommunityHelper.php │ ├── ErrorMessagesHelper.php │ ├── KeyboardHelper.php │ └── TextHelper.php ├── composer.json ├── composer.lock ├── config.php └── index.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/README.md -------------------------------------------------------------------------------- /app/commands/BalanceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/BalanceCommand.php -------------------------------------------------------------------------------- /app/commands/CheckmeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/CheckmeCommand.php -------------------------------------------------------------------------------- /app/commands/GenericmessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/GenericmessageCommand.php -------------------------------------------------------------------------------- /app/commands/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/HelpCommand.php -------------------------------------------------------------------------------- /app/commands/LeftchatmemberCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/LeftchatmemberCommand.php -------------------------------------------------------------------------------- /app/commands/NewchatmembersCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/NewchatmembersCommand.php -------------------------------------------------------------------------------- /app/commands/ReferrallinkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/ReferrallinkCommand.php -------------------------------------------------------------------------------- /app/commands/SocialmediaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/SocialmediaCommand.php -------------------------------------------------------------------------------- /app/commands/StartCampaignCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/StartCampaignCommand.php -------------------------------------------------------------------------------- /app/commands/StartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/StartCommand.php -------------------------------------------------------------------------------- /app/commands/SupportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/commands/SupportCommand.php -------------------------------------------------------------------------------- /app/config/bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/config/bot.php -------------------------------------------------------------------------------- /app/core/CatBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/core/CatBot.php -------------------------------------------------------------------------------- /app/core/CatBotConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/core/CatBotConfig.php -------------------------------------------------------------------------------- /app/core/CatBotDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/core/CatBotDB.php -------------------------------------------------------------------------------- /app/core/CatBotTelegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/core/CatBotTelegram.php -------------------------------------------------------------------------------- /app/db/campaign.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/db/campaign.sql -------------------------------------------------------------------------------- /app/db/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/db/structure.sql -------------------------------------------------------------------------------- /app/domain/Campaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/domain/Campaign.php -------------------------------------------------------------------------------- /app/domain/CampaignDBInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/domain/CampaignDBInterface.php -------------------------------------------------------------------------------- /app/domain/CampaignHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/domain/CampaignHelper.php -------------------------------------------------------------------------------- /app/domain/CampaignService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/domain/CampaignService.php -------------------------------------------------------------------------------- /app/utils/BotDevelopmentHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/utils/BotDevelopmentHelper.php -------------------------------------------------------------------------------- /app/utils/CommunityHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/utils/CommunityHelper.php -------------------------------------------------------------------------------- /app/utils/ErrorMessagesHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/utils/ErrorMessagesHelper.php -------------------------------------------------------------------------------- /app/utils/KeyboardHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/utils/KeyboardHelper.php -------------------------------------------------------------------------------- /app/utils/TextHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/app/utils/TextHelper.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/config.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobcraig1292/airdropbot/HEAD/index.php --------------------------------------------------------------------------------