{
"name": "maatify/persistence",
"description": "Standalone, framework-agnostic PDO ordering and pagination utilities for Maatify projects.",
"keywords": [
"persistence",
"pdo",
"mysql",
"ordering",
"scoped-ordering",
"global-ordering",
"display-order",
"sort-order",
"pagination",
"pdo-pagination",
"offset-pagination",
"transaction",
"php",
"maatify"
],
"homepage": "https://github.com/Maatify/persistence",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maatify",
"email": "support@maatify.com",
"homepage": "https://maatify.dev"
}
],
"support": {
"issues": "https://github.com/Maatify/persistence/issues",
"source": "https://github.com/Maatify/persistence"
},
"autoload": {
"psr-4": {
"Maatify\\Persistence\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Maatify\\Persistence\\Tests\\": "tests/"
}
},
"require": {
"ext-pdo": "*",
"maatify/exceptions": "^1.0",
"php": ">=8.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5"
},
"scripts": {
"analyse": "phpstan analyse src tests --level=max",
"format": "php-cs-fixer fix",
"test": "phpunit",
"test:unit": "phpunit --testsuite unit",
"test:regression": "phpunit --testsuite regression",
"test:integration": "phpunit --testsuite integration"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.2.0"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}
|