Skip to content

mature-woman/ebaboba

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ebaboba database

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!

Requirements

  • PHP 8.4

Installation

  1. composer require mirzaev/ebaboba
  2. Create a class that inherits mirzaev/ebaboba/database and redefine the database::FILE constant
  3. Enjoy!

Example

<?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);
?>

Used by