14 lines
812 B
Markdown
14 lines
812 B
Markdown
# PDODocument
|
|
|
|
This library allows SQLite (and, by v1.0.0-beta1, PostgreSQL) to be treated as a document database. It is a PHP implementation of the .NET [BitBadger.Documents](https://git.bitbadger.solutions/bit-badger/BitBadger.Documents) library.
|
|
|
|
## Add via Composer
|
|
|
|
![Packagist Version](https://img.shields.io/packagist/v/bit-badger/pdo-document)
|
|
|
|
`composer require bit-badger/pdo-document`
|
|
|
|
## Usage
|
|
|
|
Documentation for this library is not complete; however, its structure is very similar to the .NET version, so [its documentation will help](https://bitbadger.solutions/open-source/relational-documents/basic-usage.html) until its project specific documentation is developed. Things like `Count.All()` become `Count::all`, and all the `byField` operations are named `byFields` and take an array of fields.
|