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
Requires
- youwe/data-dictionary: ~0.0.7
- youwe/pimcore-object-bridge: ^5.0 || ^6.0
This package is auto-updated.
Last update: 2024-10-19 16:04:42 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()); } }