├── .gitignore ├── Commands ├── Config │ ├── DateCommand.php │ ├── README.md │ └── WeatherCommand.php ├── Conversation │ ├── CancelCommand.php │ ├── GenericmessageCommand.php │ ├── README.md │ └── SurveyCommand.php ├── GenericCommand.php ├── Group │ ├── GenericmessageCommand.php │ ├── LeftchatmemberCommand.php │ ├── NewchatmembersCommand.php │ └── README.md ├── InlineMode │ ├── ChoseninlineresultCommand.php │ ├── InlinequeryCommand.php │ └── README.md ├── Keyboard │ ├── CallbackqueryCommand.php │ ├── ForcereplyCommand.php │ ├── HidekeyboardCommand.php │ ├── InlinekeyboardCommand.php │ ├── KeyboardCommand.php │ └── README.md ├── Message │ ├── ChannelpostCommand.php │ ├── EditedchannelpostCommand.php │ ├── EditedmessageCommand.php │ ├── EditmessageCommand.php │ ├── GenericmessageCommand.php │ └── README.md ├── Other │ ├── EchoCommand.php │ ├── HelpCommand.php │ ├── ImageCommand.php │ ├── MarkdownCommand.php │ ├── README.md │ ├── SlapCommand.php │ ├── UploadCommand.php │ └── WhoamiCommand.php ├── Payments │ ├── GenericmessageCommand.php │ ├── PaymentCommand.php │ ├── PrecheckoutqueryCommand.php │ ├── README.md │ └── ShippingqueryCommand.php ├── README.MD ├── ServiceMessages │ └── GenericmessageCommand.php └── StartCommand.php ├── CustomCommands └── README.md ├── LICENSE ├── README.md ├── composer.json ├── config.example.php ├── cron.php ├── getUpdatesCLI.php ├── hook.php ├── manager.php ├── phpcs.xml.dist ├── set.php └── unset.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Commands/Config/DateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Config/DateCommand.php -------------------------------------------------------------------------------- /Commands/Config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Config/README.md -------------------------------------------------------------------------------- /Commands/Config/WeatherCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Config/WeatherCommand.php -------------------------------------------------------------------------------- /Commands/Conversation/CancelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Conversation/CancelCommand.php -------------------------------------------------------------------------------- /Commands/Conversation/GenericmessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Conversation/GenericmessageCommand.php -------------------------------------------------------------------------------- /Commands/Conversation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Conversation/README.md -------------------------------------------------------------------------------- /Commands/Conversation/SurveyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Conversation/SurveyCommand.php -------------------------------------------------------------------------------- /Commands/GenericCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/GenericCommand.php -------------------------------------------------------------------------------- /Commands/Group/GenericmessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Group/GenericmessageCommand.php -------------------------------------------------------------------------------- /Commands/Group/LeftchatmemberCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Group/LeftchatmemberCommand.php -------------------------------------------------------------------------------- /Commands/Group/NewchatmembersCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Group/NewchatmembersCommand.php -------------------------------------------------------------------------------- /Commands/Group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Group/README.md -------------------------------------------------------------------------------- /Commands/InlineMode/ChoseninlineresultCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/InlineMode/ChoseninlineresultCommand.php -------------------------------------------------------------------------------- /Commands/InlineMode/InlinequeryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/InlineMode/InlinequeryCommand.php -------------------------------------------------------------------------------- /Commands/InlineMode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/InlineMode/README.md -------------------------------------------------------------------------------- /Commands/Keyboard/CallbackqueryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Keyboard/CallbackqueryCommand.php -------------------------------------------------------------------------------- /Commands/Keyboard/ForcereplyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Keyboard/ForcereplyCommand.php -------------------------------------------------------------------------------- /Commands/Keyboard/HidekeyboardCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Keyboard/HidekeyboardCommand.php -------------------------------------------------------------------------------- /Commands/Keyboard/InlinekeyboardCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Keyboard/InlinekeyboardCommand.php -------------------------------------------------------------------------------- /Commands/Keyboard/KeyboardCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Keyboard/KeyboardCommand.php -------------------------------------------------------------------------------- /Commands/Keyboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Keyboard/README.md -------------------------------------------------------------------------------- /Commands/Message/ChannelpostCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Message/ChannelpostCommand.php -------------------------------------------------------------------------------- /Commands/Message/EditedchannelpostCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Message/EditedchannelpostCommand.php -------------------------------------------------------------------------------- /Commands/Message/EditedmessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Message/EditedmessageCommand.php -------------------------------------------------------------------------------- /Commands/Message/EditmessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Message/EditmessageCommand.php -------------------------------------------------------------------------------- /Commands/Message/GenericmessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Message/GenericmessageCommand.php -------------------------------------------------------------------------------- /Commands/Message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Message/README.md -------------------------------------------------------------------------------- /Commands/Other/EchoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Other/EchoCommand.php -------------------------------------------------------------------------------- /Commands/Other/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Other/HelpCommand.php -------------------------------------------------------------------------------- /Commands/Other/ImageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Other/ImageCommand.php -------------------------------------------------------------------------------- /Commands/Other/MarkdownCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Other/MarkdownCommand.php -------------------------------------------------------------------------------- /Commands/Other/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Other/README.md -------------------------------------------------------------------------------- /Commands/Other/SlapCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Other/SlapCommand.php -------------------------------------------------------------------------------- /Commands/Other/UploadCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Other/UploadCommand.php -------------------------------------------------------------------------------- /Commands/Other/WhoamiCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Other/WhoamiCommand.php -------------------------------------------------------------------------------- /Commands/Payments/GenericmessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Payments/GenericmessageCommand.php -------------------------------------------------------------------------------- /Commands/Payments/PaymentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Payments/PaymentCommand.php -------------------------------------------------------------------------------- /Commands/Payments/PrecheckoutqueryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Payments/PrecheckoutqueryCommand.php -------------------------------------------------------------------------------- /Commands/Payments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Payments/README.md -------------------------------------------------------------------------------- /Commands/Payments/ShippingqueryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/Payments/ShippingqueryCommand.php -------------------------------------------------------------------------------- /Commands/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/README.MD -------------------------------------------------------------------------------- /Commands/ServiceMessages/GenericmessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/ServiceMessages/GenericmessageCommand.php -------------------------------------------------------------------------------- /Commands/StartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/Commands/StartCommand.php -------------------------------------------------------------------------------- /CustomCommands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/CustomCommands/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/composer.json -------------------------------------------------------------------------------- /config.example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/config.example.php -------------------------------------------------------------------------------- /cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/cron.php -------------------------------------------------------------------------------- /getUpdatesCLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/getUpdatesCLI.php -------------------------------------------------------------------------------- /hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/hook.php -------------------------------------------------------------------------------- /manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/manager.php -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/set.php -------------------------------------------------------------------------------- /unset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/example-bot/HEAD/unset.php --------------------------------------------------------------------------------