Pairity/composer.json
Funky Waddle 9455d31904
Some checks failed
CI / test (8.2) (push) Has been cancelled
CI / test (8.3) (push) Has been cancelled
update ext-mongodb to correct version
2026-01-07 16:59:56 -06:00

66 lines
1.3 KiB
JSON

{
"name": "getphred/pairity",
"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.",
"type": "library",
"license": "MIT",
"authors": [
{
"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"
],
"homepage": "https://github.com/getphred/pairity",
"support": {
"issues": "https://github.com/getphred/pairity/issues",
"source": "https://github.com/getphred/pairity"
},
"require": {
"php": "^8.2",
"ext-mongodb": "^1.21",
"mongodb/mongodb": "^1.21",
"psr/simple-cache": "^3.0"
},
"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"
]
}