dev_henry/library

There is no license information available for the latest version (dev-main) of this package.

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

pkg:composer/dev_henry/library

dev-main 2023-10-07 13:25 UTC

This package is auto-updated.

Last update: 2025-12-07 18:49: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);