Install
Using composer include the repository by typing the following into a terminal
composer require dcblogdev/pdo-wrapper
Set the DB credentials. Finally, create an instance of the classes.
use Dcblogdev\PdoWrapper\Database;
// make a connection to mysql here
$options = [
//required
'username' => '',
'database' => '',
//optional
'password' => '',
'type' => 'mysql',
'charset' => 'utf8',
'host' => 'dev',
'port' => '3309'
];
$db = new Database($options);