2021-01-10 19:49:20 +01:00

28 lines
540 B
Markdown

# DoctrineMezzioModule
Simple integration of doctrine into mezzio applications.
## Getting Started
You'll have to add the VCS to your global composer config.json:
```bash
$ cat ~/.composer/config.json
```
```json
{
"config": {},
"repositories": [
{
"type": "vcs",
"url": "https://gogs.ragnarok.yvan.hu/yvan/doctrine-mezzio-module.git"
}
]
}
```
Install the module in your existing mezzio application with composer:
```bash
$ composer require yvan/doctrine-mezzio-module --stability=dev
```