-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
60 lines (60 loc) · 1.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "opencultureconsulting/simple-oai-pmh",
"description": "This is a stand-alone and easy to install data provider implementing the Open Archives Initiative's Protocol for Metadata Harvesting (OAI-PMH).",
"type": "project",
"keywords": [
"oai",
"oai-pmh",
"data-provider",
"code4lib",
"repository"
],
"homepage": "https://github.com/opencultureconsulting/simple-oai-pmh",
"readme": "README.md",
"license": ["GPL-3.0-or-later"],
"authors": [
{
"name": "Sebastian Meyer",
"email": "[email protected]",
"homepage": "https://www.opencultureconsulting.com",
"role": "maintainer"
},
{
"name": "Heinrich Stamerjohanns",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Jianfeng Li",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Daniel Neis Araujo",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Kazimierz Pietruszewski",
"email": "[email protected]",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/opencultureconsulting/simple-oai-pmh/issues",
"source": "https://github.com/opencultureconsulting/simple-oai-pmh",
"docs": "https://github.com/opencultureconsulting/simple-oai-pmh/blob/master/README.md"
},
"require": {
"php": "7.4.*|8.0.*|8.1.*|8.2.*",
"ext-xml": "*"
},
"replace": {
"opencultureconsulting/oai_pmh": "self.version"
},
"autoload": {
"psr-4": {
"OCC\\OAI2\\": "Classes/"
}
}
}