PHPackages                             concept-it/orient-db-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. concept-it/orient-db-bundle

ActiveSymfony-bundle

concept-it/orient-db-bundle
===========================

Integrates Doctrine OrientDB ODM with Symfony2 with my custom persist and remove methods.

3201PHP

Since Dec 16Pushed 9y ago1 watchersCompare

[ Source](https://github.com/tomcyr/OrientDbBundle)[ Packagist](https://packagist.org/packages/concept-it/orient-db-bundle)[ RSS](/packages/concept-it-orient-db-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

OrientDbBundle
==============

[](#orientdbbundle)

Integrates Doctrine OrientDB ODM with Symfony2 with my custom persist and remove methods

Requirements
------------

[](#requirements)

- PHP 5.3+
- [Symfony2](http://symfony.com)
- [Doctrine OrientDB ODM](http://www.doctrine-project.org/projects/orientdb-odm.html)

Installation
------------

[](#installation)

### Composer

[](#composer)

The preferred way to install this bundle is to rely on [Composer](http://getcomposer.org).

#### Method 1

[](#method-1)

Simply run assuming you have installed composer.phar or composer binary:

```
$ composer require concept-it/orient-db-bundle dev-master
```

### Method 2

[](#method-2)

1. Add the following lines in your composer.json:

```
{
  "require": {
    "concept-it/orient-db-bundle": "dev-master"
  }
}
```

2. Run the composer to download the bundle

```
$ php composer.phar update concept-it/orient-db-bundle
```

### Add this bundle to your application's kernel

[](#add-this-bundle-to-your-applications-kernel)

```
// app/ApplicationKernel.php
public function registerBundles()
{
    return array(
        // ...
        new ConceptIt\OrientDbBundle\ConceptItOrientDbBundle(),
        // ...
    );
}
```

Configuration
-------------

[](#configuration)

```
# app/config/config.yml
concept_it_orient_db:
    host:               "127.0.0.1"
    port:               2480
    user:               "user"
    password:           "password"
    dbname:             "dbname"
    proxy_dir:          "%kernel.root_dir%/cache"
    domain_dir:         "%kernel.root_dir%/../src/YourBundle/Entity"
    domain_namespace:   "YourBundle\Entity"
```

Example usage in Action
-----------------------

[](#example-usage-in-action)

```
    /**
     * @Route("/api/test")
     */
    public function testAction()
    {
        $om = $this->get('conceptit.orientdb');
        $test = new \ConceptIt\SmartShopperBundle\Entity\Test();
        $test->setName('Johny Walker');
        $om->persist($test);
        var_dump($test);die;
    }
```

Authors
-------

[](#authors)

Tomasz Cyrankowski -

License
-------

[](#license)

OrientDbBundle is licensed under the MIT License - see the [LICENSE file](https://github.com/tomcyr/OrientDbBundle/blob/master/LICENSE) for details

###  Health Score

22

—

LowBetter than 23% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% 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/8cc99f07599b0d4d7e83be094a61d58959942b86c9d3c6556b26b6b278b6dfac?d=identicon)[concept-it](/maintainers/concept-it)

---

Top Contributors

[![bigfoot90](https://avatars.githubusercontent.com/u/4598274?v=4)](https://github.com/bigfoot90 "bigfoot90 (1 commits)")[![tomcyr](https://avatars.githubusercontent.com/u/3159083?v=4)](https://github.com/tomcyr "tomcyr (1 commits)")

### Embed Badge

![Health badge](/badges/concept-it-orient-db-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/concept-it-orient-db-bundle/health.svg)](https://phpackages.com/packages/concept-it-orient-db-bundle)
```

PHPackages © 2026

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