komicho / orm
komicho orm database mysql framework
V1.0.0
2017-08-21 09:46 UTC
This package is not auto-updated.
Last update: 2024-11-10 02:01:02 UTC
README
V1.0.0
Install via composer
Add orm to composer.json configuration file.
$ composer require komicho/orm
And update the composer
$ composer update
require 'vendor/autoload.php'; use komicho\orm; $db = new orm('localhost','user','pass','name_db'); $db->table('users')->insert([ 'username' => 'karim', 'password' => md5('P123') ])->run();