alpharooq orm database mysql framework

Installs: 55

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:framework

V1.0.1 2017-07-07 17:32 UTC

This package is not auto-updated.

Last update: 2024-04-23 15:52:16 UTC


README

V1.0.1

Install via composer

Add orm to composer.json configuration file.

$ composer require alpharooq/orm

And update the composer

$ composer update
require 'vendor/autoload.php';

use alpharooq\orm;

$db = new orm('localhost','user','pass','name_db');

$db->table('users')->insert([
    'username' => 'karim',
    'password' => md5('P123')
])->run();