kwattro/neo4j-ogm-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

This Bundle implements the PHP Neo4j OGM

Installs: 57

Dependents: 0

Suggesters: 0

Security: 0

Stars: 20

Watchers: 1

Forks: 5

Type:symfony-bundle

dev-master 2013-05-13 10:49 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:37:06 UTC


README

Neo4j OGM

This bundle lets you make use of the Neo4j Graph Database REST API inside your symfony applications.

It is momently a WIP as it relies on the Neo4j-PHP-OGM from lphuberdeau that gives integration with Doctrine Common.

My main focus is momently the User Management integrated with FOSUB and Neo4j, I will come on this bundle later.

Contributions for adding compiler to configuration and travis love would be really appreciated !

Requirements

Requires :

Installation :

Installation is a quick three-steps process :

Add the package in your composer.json file

"require":
    ....
    "kwattro/neo4j-ogm-bundle": "dev-master"

Add the bundle to your AppKernel :

new Kwattro\Neo4jBundle\KwattroNeo4jBundle(),
...

Configure the bundle in your config.yml file :

kwattro_neo4j:
    host: "localhost"
    port: 7474

Usage

The usage is a little bit like the Doctrine ORM, to access the graph you just need to call the graph manager service :

$graph = $this->container->get('kwattro_neo4j.graph_manager');

// Create a new node
$user = new User();
$user->setUsername('ikwattro');
$user->setFullName('Christophe Willemsen');
$graph->persist($user);
$graph->flush();

// Retrieving node
$repo = $graph->getRepository('Acme\UserBundle\Entity\User');
$user = $repo->findOneByFullname('Christophe Willemsen');

// You can then pass the object to your views layer and use it like a simple Doctrine object

Contributors

Christophe Willemsen : @kwattro

License

Bundle under the MIT License