Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/youwegit/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
https://github.com/youwegit/data-dictionary-object-bridge
Last synced: 22 days ago
JSON representation
A connector between the data dictionary bundle and the object bridge bundle. This will allow both exist without depending on each other
- Host: GitHub
- URL: https://github.com/youwegit/data-dictionary-object-bridge
- Owner: YouweGit
- License: mit
- Created: 2018-11-02T10:10:47.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-19T10:07:10.000Z (about 3 years ago)
- Last Synced: 2024-11-07T21:06:42.690Z (2 months ago)
- Language: PHP
- Size: 19.5 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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## How to use it:
Install it using composer:
```bash
composer require "youwe/data-dictionary-object-bridge"
```Then, enable it in kernel.php:
```php
class AppKernel extends Kernel
{
public function registerBundlesToCollection(BundleCollection $collection)
{
$collection->addBundle(new \Youwe\DataDictionaryObjectBridgeBundle\DataDictionaryObjectBridgeBundle());
}
}```