{
"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"
}
}
|