jorgehernan / odmrelationshipview-bundle
Documents relationships view
Installs: 5 870
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.0
- doctrine/mongodb-odm: >=1.0.5
- doctrine/mongodb-odm-bundle: >=3.0.2
- symfony/symfony: >=2.3
This package is not auto-updated.
Last update: 2025-01-18 20:41:06 UTC
README
ODMRelationshipViewBundle lets you show all database documents relationships other documents of your Symfony application. This bundle let you to know the relationships of documents each others. That will be very helpful with large number of documents.
Features
- Show all relationships of each document:
- Type
- Embedded
- Target document
- Filters at documents list.
Requirements
- Symfony 2.3 or higher
- MongoDB 1.0.5 or higher
Installation
Step 1: Download the Bundle
composer require jorgehernan/odmrelationshipview-bundle
Step 2: Enable the Bundle
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new JorgeHernan\Bundle\OdmRelationshipViewBundle\JorgeHernanOdmRelationshipViewBundle(), ); } // ... }
Step 3: Clean Cache
# Symfony 2
php app/console cache:clear
License
This software is published under the MIT License