28 lines
540 B
Markdown
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
|
|
```
|