Pairity/composer.json
Funky Waddle 3e75c15df0
Some checks are pending
CI / test (8.2) (push) Waiting to run
CI / test (8.3) (push) Waiting to run
CI / test (8.4) (push) Waiting to run
Reduce the version requirement for symfony/yaml in order to support PHP 8.2^ properly
2026-02-08 02:40:10 -06:00

75 lines
1.5 KiB
JSON

{
"name": "getphred/pairity",
"description": "DAO/DTO-centric PHP ORM with Query Builder, relations, migrations/CLI, Unit of Work, and event system. Supports MySQL/MariaDB, PostgreSQL, SQLite, SQL Server, and Oracle.",
"type": "library",
"license": "MIT",
"bin": [
"bin/pairity"
],
"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",
"multi-tenancy",
"concurrency",
"performance"
],
"homepage": "https://github.com/getphred/pairity",
"support": {
"issues": "https://github.com/getphred/pairity/issues",
"source": "https://github.com/getphred/pairity"
},
"require": {
"php": "^8.2",
"psr/simple-cache": "^3.0",
"symfony/yaml": "^7.0",
"ext-pdo": "*"
},
"autoload": {
"psr-4": {
"Pairity\\": "src/",
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pairity\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"scripts": {
"post-install-cmd": [
"bin/pairity init"
],
"post-update-cmd": [
"bin/pairity init"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}