28 lines
540 B
Markdown
Raw Normal View History

2021-01-10 19:19:37 +01:00
# 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",
2021-01-10 19:48:46 +01:00
"url": "https://gogs.ragnarok.yvan.hu/yvan/doctrine-mezzio-module.git"
2021-01-10 19:19:37 +01:00
}
]
}
```
Install the module in your existing mezzio application with composer:
```bash
2021-01-10 19:48:46 +01:00
$ composer require yvan/doctrine-mezzio-module --stability=dev
2021-01-10 19:19:37 +01:00
```