youwe/data-dictionary-object-bridge

A connector between the data dictionary bundle and the object bridge bundle. This will allow both exist without depending on each other

v1.0.2 2022-01-19 10:06 UTC

This package is auto-updated.

Last update: 2024-04-19 14:59:39 UTC


README

A connector between the data dictionary bundle and the object bridge bundle. This will allow both exist without depending on each

How to use it:

Install it using composer:

composer require "youwe/data-dictionary-object-bridge"

Then, enable it in kernel.php:

class AppKernel extends Kernel
{
    public function registerBundlesToCollection(BundleCollection $collection)
    {
        $collection->addBundle(new \Youwe\DataDictionaryObjectBridgeBundle\DataDictionaryObjectBridgeBundle());
    }
}