Simple JSON database
Just create an object of Teflon class with path to your store
$teflon = new Teflon ('path/to/store');$teflon->create('tablename');
$teflon->drop('tablename');
$teflon->merge(['table1', 'table2'], 'name');
$teflon->getConfig('tablename');
$teflon->truncate('tablename');
$teflon->delete('itemname', 'tablename');
$teflon->exists('name', 'table');
$teflon->exists('name', 'item');
$teflon->get('*', 'itemname', 'tablename');
$teflon->put('data', 'itemname', 'tablename');
$teflon->search('needle', 'tablename');
$teflon->set('data', 'itemname', 'tablename');Teflon is licensed under MIT License.