PHPackages                             izniburak/pdox-orm - 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. [Database &amp; ORM](/categories/database)
4. /
5. izniburak/pdox-orm

Abandoned → [izniburak/pdox](/?search=izniburak%2Fpdox)Library[Database &amp; ORM](/categories/database)

izniburak/pdox-orm
==================

Useful Query Builder, PDO Class for PHP. A simple access to your SQL records.

v1.6.0(4y ago)299103100[14 issues](https://github.com/izniburak/PDOx/issues)[5 PRs](https://github.com/izniburak/PDOx/pulls)MITPHPPHP &gt;=5.5

Since Feb 22Pushed 2y ago25 watchersCompare

[ Source](https://github.com/izniburak/PDOx)[ Packagist](https://packagist.org/packages/izniburak/pdox-orm)[ Docs](https://github.com/izniburak/PDOx)[ RSS](/packages/izniburak-pdox-orm/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)DependenciesVersions (20)Used By (0)

PDOx
----

[](#pdox)

```
 _____  _____   ____
 |  __ \|  __ \ / __ \
 | |__) | |  | | |  | |_  __
 |  ___/| |  | | |  | \ \/ /
 | |    | |__| | |__| |>  <
 |_|    |_____/ \____//_/\_\

```

Fast, efficient and useful Query Builder and PDO Class for #PHP

[![Total Downloads](https://camo.githubusercontent.com/b44b03f0fe6dc13ba8f611701a5d38b4b95a0ccaf2359b0959bb2a6dd011d083/68747470733a2f2f706f7365722e707567782e6f72672f697a6e69627572616b2f70646f782f642f746f74616c2e737667)](https://packagist.org/packages/izniburak/pdox)[![Latest Stable Version](https://camo.githubusercontent.com/a42e3ee6bee1613737dd809d62a731e31d2d36f46a47403fe671c216dd349d86/68747470733a2f2f706f7365722e707567782e6f72672f697a6e69627572616b2f70646f782f762f737461626c652e737667)](https://packagist.org/packages/izniburak/pdox)[![Latest Unstable Version](https://camo.githubusercontent.com/a2e50cfaa2bfab6ff6a8e516c3deb3e81462576546a8fb7d9a758670158071b4/68747470733a2f2f706f7365722e707567782e6f72672f697a6e69627572616b2f70646f782f762f756e737461626c652e737667)](https://packagist.org/packages/izniburak/pdox)[![License](https://camo.githubusercontent.com/1f9907c0e2c5e6ae95fd0755747e11d4b4a30a1a40c30eeafcead571a6ff1020/68747470733a2f2f706f7365722e707567782e6f72672f697a6e69627572616b2f70646f782f6c6963656e73652e737667)](https://packagist.org/packages/izniburak/pdox)

Install
-------

[](#install)

composer.json file:

```
{
    "require": {
        "izniburak/pdox": "^1"
    }
}
```

after run the install command.

```
$ composer install

```

OR run the following command directly.

```
$ composer require izniburak/pdox

```

Example Usage
-------------

[](#example-usage)

```
require 'vendor/autoload.php';

$config = [
	'host'		=> 'localhost',
	'driver'	=> 'mysql',
	'database'	=> 'test',
	'username'	=> 'root',
	'password'	=> '',
	'charset'	=> 'utf8',
	'collation'	=> 'utf8_general_ci',
	'prefix'	 => ''
];

$db = new \Buki\Pdox($config);

$records = $db->table('users')
		->select('id, name, surname, age')
		->where('age', '>', 18)
		->orderBy('id', 'desc')
		->limit(20)
		->getAll();

var_dump($records);
```

Docs
----

[](#docs)

Documentation page: [PDOx Docs](https://github.com/izniburak/PDOx/blob/master/DOCS.md)

Support
-------

[](#support)

[izniburak's homepage](http://burakdemirtas.org)

[izniburak's twitter](https://twitter.com/izniburak)

Licence
-------

[](#licence)

[MIT Licence](http://opensource.org/licenses/MIT)

Contributing
------------

[](#contributing)

1. Fork it (  )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request

Contributors
------------

[](#contributors)

- [izniburak](https://github.com/izniburak) İzni Burak Demirtaş - creator, maintainer
- [Others](https://github.com/izniburak/pdox/graphs/contributors)

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community27

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 91.4% of commits — single point of failure

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.

###  Release Activity

Cadence

Every ~92 days

Recently: every ~184 days

Total

19

Last Release

1701d ago

PHP version history (3 changes)v1.0.0PHP &gt;=5.4.0

v1.4.2PHP &gt;=5.5.0

v1.5.0PHP &gt;=5.5

### Community

Maintainers

![](https://www.gravatar.com/avatar/9ab12d522ab707c9e0474847ae8299a3a879e12a55dfbc8aebbd579fa6d54140?d=identicon)[izniburak](/maintainers/izniburak)

---

Top Contributors

[![izniburak](https://avatars.githubusercontent.com/u/4693615?v=4)](https://github.com/izniburak "izniburak (203 commits)")[![const-undefined-man](https://avatars.githubusercontent.com/u/3367457?v=4)](https://github.com/const-undefined-man "const-undefined-man (8 commits)")[![emresaracoglu](https://avatars.githubusercontent.com/u/297968?v=4)](https://github.com/emresaracoglu "emresaracoglu (3 commits)")[![halillusion](https://avatars.githubusercontent.com/u/15546477?v=4)](https://github.com/halillusion "halillusion (3 commits)")[![alitelli](https://avatars.githubusercontent.com/u/36549452?v=4)](https://github.com/alitelli "alitelli (1 commits)")[![sineld](https://avatars.githubusercontent.com/u/445349?v=4)](https://github.com/sineld "sineld (1 commits)")[![GaretBot](https://avatars.githubusercontent.com/u/53994772?v=4)](https://github.com/GaretBot "GaretBot (1 commits)")[![meilhamfadil](https://avatars.githubusercontent.com/u/23370738?v=4)](https://github.com/meilhamfadil "meilhamfadil (1 commits)")[![RobertGrubb](https://avatars.githubusercontent.com/u/13295554?v=4)](https://github.com/RobertGrubb "RobertGrubb (1 commits)")

---

Tags

phpquery-buildersqlphpsqlpdoquerybuilder

### Embed Badge

![Health badge](/badges/izniburak-pdox-orm/health.svg)

```
[![Health](https://phpackages.com/badges/izniburak-pdox-orm/health.svg)](https://phpackages.com/packages/izniburak-pdox-orm)
```

###  Alternatives

[izniburak/pdox

Useful Query Builder, PDO Class for PHP. A simple access to your SQL records.

30221.1k7](/packages/izniburak-pdox)[envms/fluentpdo

FluentPDO is a quick and light PHP library for rapid query building. It features a smart join builder, which automatically creates table joins.

925511.7k13](/packages/envms-fluentpdo)[lichtner/fluentpdo

FluentPDO is a quick and light PHP library for rapid query building. It features a smart join builder, which automatically creates table joins.

921274.8k6](/packages/lichtner-fluentpdo)[clouddueling/mysqldump-php

PHP version of mysqldump cli that comes with MySQL

1.3k22.9k](/packages/clouddueling-mysqldump-php)[noahheck/e_pdostatement

Drop in replacement for default PDOStatement class allowing devs to view an interpolated version of a parameterized query

5121.2k](/packages/noahheck-e-pdostatement)

PHPackages © 2026

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