2017 © Pedro Peláez
 

symfony-bundle neo4j-ogm-bundle

This Bundle implements the PHP Neo4j OGM

image

kwattro/neo4j-ogm-bundle

This Bundle implements the PHP Neo4j OGM

  • Monday, May 13, 2013
  • by ikwattro
  • Repository
  • 0 Watchers
  • 0 Stars
  • 57 Installations
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Neo4j Object Graph Mapper Bundle for Symfony - WIP

Neo4j OGM

This bundle lets you make use of the Neo4j Graph Database REST API inside your symfony applications., (*1)

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

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

Contributions for adding compiler to configuration and travis love would be really appreciated !, (*4)

Requirements

Requires :, (*5)

  • Hirevoice Neo4J PHP OGM : https://github.com/lphuberdeau/Neo4j-PHP-OGM

Installation :

Installation is a quick three-steps process :, (*6)

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 :, (*7)

$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, (*8)

License

Bundle under the MIT License, (*9)

The Versions

13/05 2013

dev-master

9999999-dev

This Bundle implements the PHP Neo4j OGM

  Sources   Download

MIT

The Requires

 

neo4j node ogm graph database