forked from FriendsOfSymfony1/doctrine1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.21 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "friendsofsymfony1/doctrine1",
"type": "library",
"description": "PHP Database ORM for Symfony1. Do NOT use for new projects: please move to a newest Symfony release and Doctrine2",
"keywords": ["orm", "database", "symfony1", "doctrine1"],
"homepage": "http://www.doctrine-project.org",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Konsta Vesterinen",
"email": "[email protected]"
},
{
"name": "Jonathan Wage",
"email": "[email protected]"
},
{
"name": "Doctrine1 Contributors",
"homepage": "https://github.com/FriendsOfSymfony1/doctrine1/graphs/contributors"
}
],
"require": {
"php": ">=5.3",
"ext-zlib": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-pdo": "*"
},
"support": {
"issues": "https://github.com/FriendsOfSymfony1/doctrine1/issues",
"source": "https://github.com/FriendsOfSymfony1/doctrine1"
},
"autoload": {
"psr-0": {
"Doctrine_": "lib/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.4-dev"
}
}
}