-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.72 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.72 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "elmo/elmo",
"description": "ELMO - Enhanced Laboratory Metadata Organizer. A metadata editor for research metadata of EPOS MSL data.",
"type": "project",
"keywords": [
"editor",
"research",
"metadata",
"epos",
"msl"
],
"homepage": "https://env.rz-vm182.gfz.de/elmo/",
"readme": "README.md",
"time": "2025-02-03",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Holger Ehrmann",
"email": "ehrmann@gfz.de",
"homepage": "https://gfz.de",
"role": "Developer"
},
{
"name": "Jana Franz",
"role": "Developer"
},
{
"name": "Nina Rethfeldt",
"email": "nina.rethfeldt@fh-potsdam.de",
"homepage": "https://www.fh-potsdam.de/",
"role": "Software tester"
}
],
"support": {
"email": "ehrmann@gfz.de",
"issues": "https://github.com/McNamara84/elmo/issues",
"docs": "https://github.com/McNamara84/elmo"
},
"require": {
"php": "^8.3 || ^8.4 || ^8.5",
"nikic/fast-route": "^1.3",
"phpmailer/phpmailer": "^7.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^13"
},
"autoload": {
"classmap": [
"."
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
}
}