- JSON DB for APIs Testing for Your Minimalist Project
git clone https://github.com/codewithsushil/json-db.git cd json-db php -S localhost:8888 curl http://localhost:8888$db = new jsondb(__dir__);$db->post("users", [ 'id' => 1, 'name' => 'jhon', 'email' => 'jhon@example.com', 'create_at' => '20:34:05:05:2025' ]);$db->get("users", true); // all data $db->get("users", $id); // single data$db->update("users",$id, [ 'name' => 'lily' ])$db->delete("users", $id);$db->search('users','jhon');