A lightweight database in pure PHP
At the moment the project is a modified RFC 4180
2024.12.14
IN DEVELOPMENT! DO NOT USE IN PROJECTS!
- PHP 8.4
composer require mirzaev/ebaboba
- Create a class that inherits
mirzaev/ebaboba/database
and redefine thedatabase::FILE
constant - Enjoy!
<?php
// Ebaboba database
use mirzaev\ebaboba\{database, record};
// Initializing the database
$database = new database('name', 'age', 'created');
// Initializing the record
$record = new record(['Arsen', '23', time());
// Writing to the database
$database->write($record);
?>
- My site-article about how i was kidnapped by PMC Wagner operatives mirzaev/repression
- My decentralized P2P blockchain chats project mirzaev/notchat