forked from mjakubowski/nutwerk-orm-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 779 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "mzj/doctrine-orm-provider",
"description": "Doctrine ORM provider for Silex",
"keywords": ["silex", "doctrine", "orm", "database", "extension", "provider"],
"homepage": "https://github.com/mjakubowski/nutwerk-orm-extension",
"authors": [
{ "name": "Marc Jakubowski", "homepage": "http://nutwerk.de/" }
],
"require": {
"php": ">=5.3.2",
"doctrine/orm": "2.1.*",
"doctrine/common": "2.1.*",
"doctrine/dbal": "2.1.*"
},
"suggest": {
"symfony/console": "Necessary if you would like to use the Doctrine CLI tools"
},
"autoload": {
"psr-0": { "Nutwerk\\Provider": "lib/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}