Skip to content

Releases: divengine/nodes

Div PHP Nodes 2.0.0

04 Jul 04:52
Compare
Choose a tag to compare

Initiating a new form of implementation. Now Div Software Solutions projects will be inside the divengine namespace. The divNodes class was renamed simply nodes.

use divengine\nodes;

$db = new nodes("database/contacts");

$id = $db->addNode([
    "name" => "Peter",
    "age" => 25
]);