tina4stack/tina4php-database

Tina4 PHP Database Module

Installs: 6 468

Dependents: 13

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 1

Open Issues: 0

pkg:composer/tina4stack/tina4php-database

v2.0.21 2025-10-13 15:45 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;
    
}