2025-12-10 13:01:07 +00:00
|
|
|
{
|
|
|
|
|
"name": "getphred/pairity",
|
2025-12-11 13:52:08 +00:00
|
|
|
"description": "DAO/DTO-centric PHP ORM with Query Builder, relations (SQL + MongoDB), migrations/CLI, Unit of Work, and event system. Supports MySQL/MariaDB, PostgreSQL, SQLite, SQL Server, Oracle, and MongoDB.",
|
2025-12-10 13:01:07 +00:00
|
|
|
"type": "library",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"authors": [
|
2025-12-11 13:52:08 +00:00
|
|
|
{
|
|
|
|
|
"name": "Phred",
|
|
|
|
|
"email": "phred@getphred.com",
|
|
|
|
|
"homepage": "https://getphred.com",
|
|
|
|
|
"role": "Owner"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"keywords": [
|
|
|
|
|
"php",
|
|
|
|
|
"orm",
|
|
|
|
|
"dao",
|
|
|
|
|
"dto",
|
|
|
|
|
"query builder",
|
|
|
|
|
"migrations",
|
|
|
|
|
"schema builder",
|
|
|
|
|
"relations",
|
|
|
|
|
"unit of work",
|
|
|
|
|
"events",
|
|
|
|
|
"pdo",
|
|
|
|
|
"mysql",
|
|
|
|
|
"mariadb",
|
|
|
|
|
"postgresql",
|
|
|
|
|
"sqlite",
|
|
|
|
|
"sqlserver",
|
|
|
|
|
"oracle",
|
|
|
|
|
"mongodb",
|
|
|
|
|
"nosql"
|
2025-12-10 13:01:07 +00:00
|
|
|
],
|
2025-12-11 13:52:08 +00:00
|
|
|
"homepage": "https://github.com/getphred/pairity",
|
|
|
|
|
"support": {
|
|
|
|
|
"issues": "https://github.com/getphred/pairity/issues",
|
|
|
|
|
"source": "https://github.com/getphred/pairity"
|
|
|
|
|
},
|
2025-12-10 13:01:07 +00:00
|
|
|
"require": {
|
2025-12-15 19:29:43 +00:00
|
|
|
"php": "^8.2",
|
2026-01-07 18:48:58 +00:00
|
|
|
"ext-mongodb": "^1.20",
|
|
|
|
|
"mongodb/mongodb": "^1.20",
|
2026-01-06 16:56:40 +00:00
|
|
|
"psr/simple-cache": "^3.0"
|
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"
|
|
|
|
|
]
|
|
|
|
|
}
|