tina4stack/tina4php-database

Tina4 PHP Database Module

v2.0.14 2024-03-11 16:27 UTC

README

Tina4 Php Database Core

The Core Database Module for Tina4

Install the module using composer

composer require tina4stack/tina4php-database

Extend the Database Interface for your own database drivers

<?php
/**
* Example database implementation
*/
class DataMyDb implements DataBase
{
    use DataBaseCore;
    
}