forked from kitodo/kitodo-publication
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
70 lines (69 loc) · 1.8 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
61
62
63
64
65
66
67
68
69
{
"name": "kitodo/publication",
"type": "typo3-cms-extension",
"description": "Plugins and modules for publication management with Fedora repositories.",
"homepage": "https://github.com/kitodo/kitodo-publication",
"readme":"README.md",
"license": ["GPL-3.0-or-later"],
"keywords": [
"TYPO3",
"Fedora",
"extension",
"publishing"
],
"authors": [
{
"name": "Ralf Claußnitzer",
"email": "[email protected]",
"homepage": "https://www.slub-dresden.de",
"role": "Maintainer"
},
{
"name": "effective Webwork GmbH",
"email": "[email protected]",
"homepage": "https://effective-webwork.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/kitodo/kitodo-publication/issues",
"source": "https://github.com/kitodo/kitodo-publication"
},
"require": {
"php": ">=7.2 <=7.4",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-iconv": "*",
"ext-xsl": "*",
"typo3/cms-core": "^9.5.0",
"nategood/httpful": "^0.3.2",
"guzzlehttp/guzzle": "^6.3",
"elasticsearch/elasticsearch": "^7.6",
"symfony/workflow": "~4.3.11",
"symfony/serializer": "^5.0",
"renanbr/bibtex-parser": "~2.1.2",
"galbar/jsonpath": "^1.1",
"fluidtypo3/vhs": "~6.0.5"
},
"require-dev": {
"phpunit/phpunit": "^7",
"nimut/testing-framework": "^5.0",
"kitodo/presentation": "~v3.3"
},
"replace": {
"typo3-ter/dpf": "self.version"
},
"autoload": {
"psr-4": {
"EWW\\Dpf\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "dpf"
}
}
}