PHPackages                             door/rdb - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. door/rdb

ActiveLibrary

door/rdb
========

Relations database connector for Door framework

017PHP

Since Aug 2Pushed 10y ago1 watchersCompare

[ Source](https://github.com/doorframework/rdb)[ Packagist](https://packagist.org/packages/door/rdb)[ RSS](/packages/door-rdb/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Fork of kohana/database module. Maked it for using standalone.

Usage example:

```
//creating connection
$database = new Door\RDB\Database\MySQL(array(
	'connection' => array(
		'hostname'   => 'localhost',
		'database'   => 'databasename',
		'username'   => 'username',
		'password'   => 'password',
		'persistent' => FALSE,
	),
	'table_prefix' => '',
	'charset'      => 'utf8',
	'caching'      => FALSE,
));

//performing queries
$database->list_tables();
$database->list_columns('users');
$database->query(Door\RDB\Database::SELECT, "select * from roles")
	->execute()
	->as_array();
$database->select("id,name,email")
	->from('users')
	->where('registered',">","2014-01-01")
	->execute()
	->as_array();
$database->delete('users')->where('id', '=', 25)->execute();

```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/4112f7a08e25a4d6080063ed327cab8049b2c32edc9d96a1610bec475e0c9bb8?d=identicon)[serega3000](/maintainers/serega3000)

### Embed Badge

![Health badge](/badges/door-rdb/health.svg)

```
[![Health](https://phpackages.com/badges/door-rdb/health.svg)](https://phpackages.com/packages/door-rdb)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
