rebranging

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2024-12-15 00:09:42 +07:00
parent 66c39be90b
commit a69c2bbcdd

View File

@ -1,4 +1,4 @@
# Dolboeb database # Ebaboba database
A lightweight database in pure PHP<br> A lightweight database in pure PHP<br>
At the moment the project is a modified RFC 4180 At the moment the project is a modified RFC 4180
@ -9,16 +9,16 @@ At the moment the project is a modified RFC 4180
- PHP 8.4 - PHP 8.4
## Installation ## Installation
1. `composer require mirzaev/dolboeb` 1. `composer require mirzaev/ebaboba`
2. Create a class that inherits `mirzaev/dolboeb/database` and redefine the `database::FILE` constant 2. Create a class that inherits `mirzaev/ebaboba/database` and redefine the `database::FILE` constant
3. Enjoy! 3. Enjoy!
## Example ## Example
```php ```php
<?php <?php
// Dolboeb database // Ebaboba database
use mirzaev\dolboeb\{database, record}; use mirzaev\ebaboba\{database, record};
// Initializing the database // Initializing the database
$database = new database('name', 'age', 'created'); $database = new database('name', 'age', 'created');