-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.11 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
{
"name": "openpsa/midgard-portable",
"description": "ActiveRecord ORM built on top of Doctrine 2",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Andreas Flack",
"email": "[email protected]",
"homepage": "http://www.contentcontrol-berlin.de/"
}
],
"require": {
"php": ">=8.1",
"doctrine/orm": "^2.14",
"doctrine/dbal": "^3.5",
"symfony/console": ">=6.0.0",
"symfony/cache": ">=4.4.0",
"monolog/monolog": "^1.15 || ^2.0",
"ext-xml": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"bin": ["bin/midgard-portable"],
"autoload": {
"classmap": ["api/"],
"psr-4": { "midgard\\portable\\": "src/" },
"files": ["api/aliases.php", "api/functions.php"]
},
"extra": {
"branch-alias": {
"dev-master": "1.10.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}