PHP code example of randak / charlotte
1. Go to this page and download the library: Download randak/charlotte library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
randak / charlotte example snippets
man\Neo4j\Client;
use Charlotte\Charlotte;
use Charlotte\Processor\Neo4jProcessor;
use Symfony\Component\Yaml\Parser;
$yaml = new Parser();
$config = $yaml->parse(file_get_contents(__DIR__."/config.yml")); //set this
$conn = $config["connections"]["Neo4j"];
$client = new Client($conn["host"], $conn["port"]);
$charlotte = new Charlotte();
$charlotte->setConfig($config);
$charlotte->setProcessor(new Neo4jProcessor($client));
$charlotte->traverse();