Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 477 Bytes

CHANGELOG.md

File metadata and controls

25 lines (20 loc) · 477 Bytes

September 18, 2019

  • release 1.0.0 version
  • release 0.2.0 version
  • New method for build a PDO instances, orm::buildPDO($config, $connectGlobal);

This example build a PDO instance, and make a global connection:

<?php

use divengine\orm;

orm::buildPDO([
    'type' => 'pgsql',
    'host' => 'localhost',
    'port' => 5432,
    'name' => 'mydb',
    'user' => 'me',
    'pass' => 'mysuperpass'
], true);

September 9, 2019

  • release 0.1.0 version