Pairity/composer.json

34 lines
623 B
JSON
Raw Normal View History

2025-12-10 13:01:07 +00:00
{
"name": "getphred/pairity",
"description": "Partitioned-model PHP ORM (DTO/DAO), Query Builder, Raw SQL, multi-DB via PDO.",
"type": "library",
"license": "MIT",
"authors": [
{ "name": "Pairity Contributors" }
],
"require": {
2025-12-10 14:02:24 +00:00
"php": ">=8.1",
"ext-mongodb": "*",
"mongodb/mongodb": "^1.19"
2025-12-10 13:01:07 +00:00
},
"autoload": {
"psr-4": {
"Pairity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pairity\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"minimum-stability": "dev",
"prefer-stable": true
,
"bin": [
"bin/pairity"
]
}