Update README and composer.json files in preparation for submission to Packagist
Some checks are pending
CI / test (8.1) (push) Waiting to run
CI / test (8.2) (push) Waiting to run
CI / test (8.3) (push) Waiting to run

This commit is contained in:
Funky Waddle 2025-12-11 07:52:08 -06:00
parent 7d4aea0a84
commit 117592cfe2
2 changed files with 36 additions and 2 deletions

View file

@ -2,6 +2,9 @@
A partitionedmodel PHP ORM (DTO/DAO) with Query Builder, relations, raw SQL helpers, and a portable migrations + schema builder. Namespace: `Pairity\`. Package: `getphred/pairity`.
![CI](https://github.com/getphred/pairity/actions/workflows/ci.yml/badge.svg)
![Packagist](https://img.shields.io/packagist/v/getphred/pairity.svg)
## Contributing
This is an early foundation. Contributions, discussions, and design proposals are welcome. Please open an issue to coordinate larger features.

View file

@ -1,11 +1,42 @@
{
"name": "getphred/pairity",
"description": "Partitioned-model PHP ORM (DTO/DAO), Query Builder, Raw SQL, multi-DB via PDO.",
"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": "Pairity Contributors" }
{
"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.1",
"ext-mongodb": "*",