tina4stack/tina4php-database

Tina4 PHP Database Module

v2.0.17 2025-06-20 11:24 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;
    
}