sieeniu/slight-pdo

There is no license information available for the latest version (dev-master) of this package.

PDO wrapper for PHP

Installs: 340

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/sieeniu/slight-pdo

dev-master 2021-08-26 12:12 UTC

This package is auto-updated.

Last update: 2025-12-27 20:18:34 UTC


README

use SlightPDO\Configuration;
use SlightPDO\Connection;
use SlightPDO\Factory;

require_once __DIR__ . '/vendor/autoload.php';

$connection = Factory::create(
  new Connection(
    new Configuration("host", 3306, "databaseName", "username", "password")
  )
);