komicho/orm

komicho orm database mysql framework

Installs: 18

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Type:framework

V1.0.0 2017-08-21 09:46 UTC

This package is not auto-updated.

Last update: 2024-04-27 23:39:35 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();