Giter Club home page Giter Club logo

kwattroneo4jogmbundle's Introduction

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.

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

kwattroneo4jogmbundle's People

Contributors

ikwattro avatar

Watchers

James Cloos avatar Amit Das avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.