dev_henry / library
A Powerful PHP Library that helps to Automate Tasks
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
This package is auto-updated.
Last update: 2025-05-07 17:09:14 UTC
README
Light Weight Library Used to Automate SQL Query has SQLite Support too
Usage
Creating A Table
<?php use DevHenry\Model; $model = new Model("users", [ Model::INT("id", true), Model::TEXT("email"), Model::TEXT("firstname"), Model::TEXT("lastname"), Model::TEXT("password"), Model::TEXT("balance"), ]); /** * This Will Create The Table and Save the Query in '/generated' folder in the same folder where this file is located */ Loader::load($model);