├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpcs.xml.dist ├── phpunit.xml.dist ├── src ├── Exceptions │ └── InlineKeyboardPaginationException.php ├── InlineKeyboardPagination.php └── InlineKeyboardPaginator.php └── tests └── InlineKeyboardPaginationTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/composer.lock -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Exceptions/InlineKeyboardPaginationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/src/Exceptions/InlineKeyboardPaginationException.php -------------------------------------------------------------------------------- /src/InlineKeyboardPagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/src/InlineKeyboardPagination.php -------------------------------------------------------------------------------- /src/InlineKeyboardPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/src/InlineKeyboardPaginator.php -------------------------------------------------------------------------------- /tests/InlineKeyboardPaginationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-telegram-bot/inline-keyboard-pagination/HEAD/tests/InlineKeyboardPaginationTest.php --------------------------------------------------------------------------------