Search by

ceus-media / database

kriss0r

PHP database access

Package info

github.com/CeusMedia/Database

pkg:composer/ceus-media/database

Statistics

Installs: 1 501

Dependents: 3

Suggesters: 0

Stars: 1

Open Issues: 0

0.7.1 2026-08-28 23:59 UTC

README

Branch Release PHP version PHPStan level Monthly downloads Package version License

PHP database access

Installation

Composer

Install this library using composer:

composer require ceus-media/Database

Within your code, load library:

require_once 'vendor/autoload.php';

Modules

This library offers two independent ways to work with a database:

  • PDO - an enhanced PDO wrapper: connections with transactions, logging and pooling, plus a table abstraction (CRUD, entities, caching, a small condition-value query language).
  • OSQL - an object-oriented SQL query builder (Select, Condition, Table, Client) for building and executing queries as objects.

See each module's own README for code examples.