japerman / start-pdox
Query Builder and PDO Class for #PHP
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/japerman/start-pdox
This package is auto-updated.
Last update: 2025-09-26 18:48:07 UTC
README
Query Builder and PDO Class for #PHP
Install
composer.json file:
{ "require": { "japerman/start-pdox": "^1" } }
after run the install command.
$ composer install
OR run the following command directly.
$ composer require japerman/start-pdox
Example Usage
require 'vendor/autoload.php'; $config = require 'db.php'; $db = new \Start\Pdox($config); $records = $db->table('users') ->select('id, name, surname, age') ->where('age', '>', 18) ->orderBy('id', 'desc') ->limit(20) ->getAll(); var_dump($records);