forked from doctrine/doctrine1
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 979 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "ovos/doctrine1",
"type": "library",
"description": "Doctrine v1, Database ORM, PHP 5.3-8.2 compatible",
"keywords": [
"php",
"doctrine1",
"orm",
"database"
],
"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]"}
],
"replace": {
"doctrine/doctrine1": "*"
},
"require": {
"php": ">=5.3.3",
"ext-pdo": "*"
},
"autoload": {
"psr-0": {
"Doctrine_": "lib/"
},
"classmap": [
"lib/Doctrine.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
},
"archive": {
"exclude": ["/docs", "/tests", "/tools"]
},
"scripts": {
"test": "@php ./tests/run.php"
}
}