-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
31 lines (31 loc) · 991 Bytes
/
composer.json
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
27
28
29
30
31
{
"name": "opensolutions/doctrine2bridge",
"description": "Adds the the power of Doctrine2 to Laravel 4 (with support for SQL logging and authentication)",
"homepage": "https://github.com/opensolutions/doctrine2bridge",
"keywords": [ "laravel", "doctrine", "doctrine2" ],
"license": "MIT",
"authors": [
{
"name": "Barry O'Donovan",
"email": "barry@opensolutions.ie",
"homepage": "http://www.barryodonovan.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/opensolutions/doctrine2bridge/issues",
"source": "https://github.com/opensolutions/doctrine2bridge"
},
"require": {
"php": ">=5.3.0",
"doctrine/orm": "2.*",
"doctrine/migrations": "1.0.*@dev"
},
"autoload": {
"psr-0": {
"Doctrine2Bridge": "src/"
}
},
"bin": [ "bin/doctrine2" ],
"minimum-stability": "dev"
}