-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
29 lines (29 loc) · 923 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
{
"name": "opensolutions/doctrine2bridge-l5",
"description": "Adds the the power of Doctrine2 to Laravel 5 (with support for SQL logging and authentication)",
"homepage": "https://github.com/opensolutions/doctrine2bridge-l5",
"keywords": [ "laravel", "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-l5/issues",
"source": "https://github.com/opensolutions/doctrine2bridge-l5"
},
"require": {
"php": ">=5.5.0",
"doctrine/orm": ">=2.4.0"
},
"autoload": {
"psr-0": {
"Doctrine2Bridge": "src/"
}
},
"bin": [ "bin/d2b-doctrine2" ]
}