├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── README.md ├── composer.json ├── docs └── images │ ├── inlinekeyboard-multiple-rows.png │ ├── inlinekeyboard-stack.png │ └── inlinekeyboards-multiline-buttons.png ├── phpunit.xml ├── src ├── Button.php ├── FluentEntity.php ├── ForceReply.php ├── InlineKeyboard │ ├── InlineKeyboardButton.php │ └── InlineKeyboardMarkup.php ├── KeyboardMarkup.php ├── ReplyKeyboard │ ├── KeyboardButton.php │ ├── KeyboardButtonPollType.php │ └── ReplyKeyboardMarkup.php ├── ReplyKeyboardRemove.php └── helpers.php └── tests ├── Pest.php └── Unit ├── ForceReplyTest.php ├── InlineKeyboardButtonTest.php ├── InlineKeyboardMarkupTest.php ├── KeyboardButtonPollTypeTest.php ├── KeyboardButtonTest.php ├── ReplyKeyboardMarkupTest.php └── ReplyKeyboardRemoveTest.php /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/composer.json -------------------------------------------------------------------------------- /docs/images/inlinekeyboard-multiple-rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/docs/images/inlinekeyboard-multiple-rows.png -------------------------------------------------------------------------------- /docs/images/inlinekeyboard-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/docs/images/inlinekeyboard-stack.png -------------------------------------------------------------------------------- /docs/images/inlinekeyboards-multiline-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/docs/images/inlinekeyboards-multiline-buttons.png -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/Button.php -------------------------------------------------------------------------------- /src/FluentEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/FluentEntity.php -------------------------------------------------------------------------------- /src/ForceReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/ForceReply.php -------------------------------------------------------------------------------- /src/InlineKeyboard/InlineKeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/InlineKeyboard/InlineKeyboardButton.php -------------------------------------------------------------------------------- /src/InlineKeyboard/InlineKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/InlineKeyboard/InlineKeyboardMarkup.php -------------------------------------------------------------------------------- /src/KeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/KeyboardMarkup.php -------------------------------------------------------------------------------- /src/ReplyKeyboard/KeyboardButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/ReplyKeyboard/KeyboardButton.php -------------------------------------------------------------------------------- /src/ReplyKeyboard/KeyboardButtonPollType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/ReplyKeyboard/KeyboardButtonPollType.php -------------------------------------------------------------------------------- /src/ReplyKeyboard/ReplyKeyboardMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/ReplyKeyboard/ReplyKeyboardMarkup.php -------------------------------------------------------------------------------- /src/ReplyKeyboardRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/ReplyKeyboardRemove.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/Unit/ForceReplyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/tests/Unit/ForceReplyTest.php -------------------------------------------------------------------------------- /tests/Unit/InlineKeyboardButtonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/tests/Unit/InlineKeyboardButtonTest.php -------------------------------------------------------------------------------- /tests/Unit/InlineKeyboardMarkupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/tests/Unit/InlineKeyboardMarkupTest.php -------------------------------------------------------------------------------- /tests/Unit/KeyboardButtonPollTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/tests/Unit/KeyboardButtonPollTypeTest.php -------------------------------------------------------------------------------- /tests/Unit/KeyboardButtonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/tests/Unit/KeyboardButtonTest.php -------------------------------------------------------------------------------- /tests/Unit/ReplyKeyboardMarkupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/tests/Unit/ReplyKeyboardMarkupTest.php -------------------------------------------------------------------------------- /tests/Unit/ReplyKeyboardRemoveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/fluent-keyboard/HEAD/tests/Unit/ReplyKeyboardRemoveTest.php --------------------------------------------------------------------------------