commandstring / jsondb
An easier way to use JSON for a database
Requires
- commandstring/utils: ^1.4
README
A fully customizable JSON Database system structured similarly to MySQL
Creating a database
<?php use CommandString\JsonDb\Structure\Database; use CommandString\JsonDb\Structure\Table; class YourDatabase extends Database { protected static array $tableClasses = []; }
Create a class that extends CommandString\JsonDb\Structure\Database
and add the property shown above. We'll come back to it later
Creating a table
<?php use CommandString\JsonDb\Structure\Table; class YourTable extends Table { protected static string $name = "yourtable"; protected static string $fileLocation = __DIR__."/yourtable.json"; protected static array $columns = []; }
Create a class that extends CommandString\JsonDb\Structure\Table
like the one above. The first property is how the table will be identified, the second is where the table's json will be stored/retrieved and I'll come back to the columns property later as well. However, for the tableClasses property in your database class, you will want to add your table class to it like so...
// ... protected static array $tableClasses = [YourDatabase::class]; // ...
and append any future tables you create to this property
Creating a column
use CommandString\JsonDb\Structure\Column; use CommandString\JsonDb\Structure\DataTypes; class YourColumn extends Column { protected static DataTypes $type = DataTypes::STRING; protected static string $name = "yourcolumn"; protected static array $enumValues = []; protected static string|int|float|null $default; protected static bool $nullable = false; protected static bool $unique = false; }
Create a class that extends CommandString\JsonDb\Structure\Column
then add the properties shown above. The available DataTypes are string, int, float, and enum. If the type is enum then make sure to add the values this column can be inside the enumValues array.
Special Notes
- I would recommend adding magic methods and public constants to your classes to take advantage of intellesense while coding, checkout the TestDb for an example
- Column and Table names will always be lowercased, so I would recommend having them lowercased by default to prevent any confusion.
Creating Rows
$db = new YourDatabase; // you can also pass JSON encoder flags into the constructor $row = $db->yourtable->newRow(); $row->setColumn($db->yourtable::COLUMN_NAME, "<value>") // you can pass a string for the column name but I recommend having constants has mentioned earlier $row = $row->store(); // returns that same row but this is associated to specific point in the JSON file
Fetching rows
/** * @var Row[] */ $results = $db->yourtable->newQuery()->whereAnd($db->yourtable::COLUMN_NAME, Operators::EQUAL_TO, "<value>")->execute();
Updating rows
$row = $results[0]; $row->setColumn($db->yourtable::COLUMN_NAME, "<new value>"); $row->store(); // updated the row