tina4stack / tina4php-database
Tina4 PHP Database Module
Installs: 4 723
Dependents: 13
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- ext-json: *
- tina4stack/tina4php-debug: ^2.0
Requires (Dev)
- overtrue/phplint: ^2.0
- phpunit/phpunit: ^9
- roave/security-advisories: dev-latest
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; }