PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Eric Sizemore   ESI PHP Pagination   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: ESI PHP Pagination
Show paginated navigation using callback functions
Author: By
Last change: Update phpstan/* to 2.0
Prepare release for 2.0.2
small maintenance related tasks
some minor cleanup
chore: bring in line with other projects
chore(deps): refresh lock file
attempt to fix psalm workflow erroring
new docs, adding psalm, code fixes/updates and more
Update composer.json
Update composer.json
Update composer.json
cs updates, reduce header docblock size, misc.
Date: 1 month ago
Size: 3,182 bytes
 

Contents

Class file image Download
{ "name": "esi/pagination", "description": "Simple, lightweight and universal service that implements pagination on collections of things.", "license": "MIT", "type": "library", "keywords": [ "pagination", "paginator", "pager", "simple", "easy", "flexible", "universal", "light", "lite", "lightweight" ], "authors": [ { "name": "Eric Sizemore", "email": "admin@secondversion.com", "homepage": "https://www.secondversion.com/", "role": "Fork Developer" }, { "name": "Ashley Dawson", "email": "ashley@ashleydawson.co.uk", "role": "Original Developer" } ], "support": { "issues": "https://github.com/ericsizemore/pagination/issues", "forum": "https://github.com/ericsizemore/pagination/discussions", "source": "https://github.com/ericsizemore/pagination/tree/master", "security": "https://github.com/ericsizemore/pagination/security/policy" }, "funding": [ { "type": "custom", "url": "https://ko-fi.com/ericsizemore" }, { "type": "github", "url": "https://github.com/ericsizemore" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/packagist/esi/pagination" } ], "require": { "php": "^8.2 <8.5" }, "require-dev": { "ext-pdo": "*", "ext-pdo_sqlite": "*", "esi/phpunit-coverage-check": "^2.0", "friendsofphp/php-cs-fixer": "^3.64", "phpstan/extension-installer": "^1.4", "phpstan/phpstan": "^2.0", "phpstan/phpstan-deprecation-rules": "^2.0", "phpstan/phpstan-phpunit": "^2.0", "phpstan/phpstan-strict-rules": "^2.0", "phpunit/phpunit": "^11.4", "psalm/plugin-phpunit": "^0.19.0", "vimeo/psalm": "dev-master" }, "minimum-stability": "dev", "prefer-stable": true, "autoload": { "psr-4": { "Esi\\Pagination\\": "src/" } }, "autoload-dev": { "psr-4": { "Esi\\Pagination\\Tests\\": "tests/" } }, "config": { "allow-plugins": { "phpstan/extension-installer": true } }, "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "scripts": { "coverage-check": "vendor/bin/coverage-check build/logs/clover.xml 100", "cs:check": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --diff", "cs:fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php", "phpstan": "vendor/bin/phpstan analyse -c phpstan.neon", "psalm": "vendor/bin/psalm --no-diff --use-baseline=psalm-baseline.xml", "psalm:ci": "vendor/bin/psalm --no-diff --long-progress --output-format=github --use-baseline=psalm-baseline.xml", "psalm:stats": "vendor/bin/psalm --no-diff --stats --use-baseline=psalm-baseline.xml", "test": "phpunit" } }