forked from doctrine/doctrine1
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 867 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 867 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
27
28
29
30
31
32
33
34
35
{
"name": "recras/doctrine1",
"type": "library",
"description": "PHP Database ORM",
"keywords": ["orm", "database"],
"homepage": "http://www.doctrine-project.org",
"license": "LGPL-2.1-or-later",
"authors": [
{"name": "Recras developers", "email": "devs@recras.nl"},
{"name": "Konsta Vesterinen", "email": "kvesteri@cc.hut.fi"},
{"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
],
"require": {
"php": ">=8.0",
"ext-pdo": "*",
"symfony/yaml": "^7.0"
},
"conflict": {
"drak/doctrine1": "*"
},
"autoload": {
"psr-0": { "Doctrine_": "lib/" },
"classmap": [
"lib/"
]
},
"require-dev": {
"phpstan/phpstan": "1.10.3"
},
"autoload-dev": {
"classmap": [
"tests/"
]
}
}