├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── config └── cursor_pagination.php ├── phpunit.xml.dist ├── src ├── Cursor.php ├── CursorPaginationServiceProvider.php └── CursorPaginator.php └── tests ├── CursorNameTest.php ├── CursorPaginationTest.php ├── CursorTest.php ├── Fixtures ├── Models │ └── User.php └── config │ └── simple.php ├── MacroTest.php ├── ModelsTestCase.php ├── RequestTest.php ├── TestCase.php └── UrlDetectionTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/composer.json -------------------------------------------------------------------------------- /config/cursor_pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/config/cursor_pagination.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/src/Cursor.php -------------------------------------------------------------------------------- /src/CursorPaginationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/src/CursorPaginationServiceProvider.php -------------------------------------------------------------------------------- /src/CursorPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/src/CursorPaginator.php -------------------------------------------------------------------------------- /tests/CursorNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/CursorNameTest.php -------------------------------------------------------------------------------- /tests/CursorPaginationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/CursorPaginationTest.php -------------------------------------------------------------------------------- /tests/CursorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/CursorTest.php -------------------------------------------------------------------------------- /tests/Fixtures/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/Fixtures/Models/User.php -------------------------------------------------------------------------------- /tests/Fixtures/config/simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/Fixtures/config/simple.php -------------------------------------------------------------------------------- /tests/MacroTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/MacroTest.php -------------------------------------------------------------------------------- /tests/ModelsTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/ModelsTestCase.php -------------------------------------------------------------------------------- /tests/RequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/RequestTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/UrlDetectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juampi92/cursor-pagination/HEAD/tests/UrlDetectionTest.php --------------------------------------------------------------------------------