komicho / orm
komicho orm database mysql framework
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Type:framework
pkg:composer/komicho/orm
This package is not auto-updated.
Last update: 2025-09-28 05:55:52 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();