PHPackages                             kwattro/neo4j-ogm-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. kwattro/neo4j-ogm-bundle

AbandonedSymfony-bundle

kwattro/neo4j-ogm-bundle
========================

This Bundle implements the PHP Neo4j OGM

19575[1 issues](https://github.com/kwattro/KwattroNeo4jOGMBundle/issues)PHP

Since May 13Pushed 13y ago1 watchersCompare

[ Source](https://github.com/kwattro/KwattroNeo4jOGMBundle)[ Packagist](https://packagist.org/packages/kwattro/neo4j-ogm-bundle)[ RSS](/packages/kwattro-neo4j-ogm-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Neo4j Object Graph Mapper Bundle for Symfony - WIP
==================================================

[](#neo4j-object-graph-mapper-bundle-for-symfony---wip)

Neo4j OGM
---------

[](#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](https://github.com/lphuberdeau/Neo4j-PHP-OGM) from [lphuberdeau](https://github.com/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
------------

[](#requirements)

Requires :

- Hirevoice Neo4J PHP OGM :

Installation :
--------------

[](#installation-)

Installation is a quick three-steps process :

#### Add the package in your *composer.json* file

[](#add-the-package-in-your-composerjson-file)

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

```

#### Add the bundle to your `AppKernel` :

[](#add-the-bundle-to-your-appkernel-)

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

```

#### Configure the bundle in your `config.yml` file :

[](#configure-the-bundle-in-your-configyml-file-)

```
kwattro_neo4j:
    host: "localhost"
    port: 7474

```

Usage
-----

[](#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
------------

[](#contributors)

Christophe Willemsen : [@kwattro](https://github.com/kwattro)

License
-------

[](#license)

Bundle under the MIT License

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/c66009f0f147bb7dfcfbbd6837176b2fe6c6e2cdcf82d9ad07ab7d7aa47735f4?d=identicon)[ikwattro](/maintainers/ikwattro)

---

Top Contributors

[![ikwattro](https://avatars.githubusercontent.com/u/1222009?v=4)](https://github.com/ikwattro "ikwattro (15 commits)")

### Embed Badge

![Health badge](/badges/kwattro-neo4j-ogm-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/kwattro-neo4j-ogm-bundle/health.svg)](https://phpackages.com/packages/kwattro-neo4j-ogm-bundle)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
