forked from dikastes/kitodo-presentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
97 lines (97 loc) · 2.94 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "kitodo/presentation",
"description": "Base plugins, modules, services and API of the Digital Library Framework. It is part of the community-based Kitodo Digitization Suite.",
"type": "typo3-cms-extension",
"homepage": "https://www.kitodo.org",
"readme": "README.md",
"license": ["GPL-3.0-or-later"],
"authors": [
{
"name": "Kitodo. Key to digital objects e.V.",
"email": "[email protected]",
"homepage": "https://www.kitodo.org",
"role": "provider"
},
{
"name": "Sebastian Meyer",
"email": "[email protected]",
"homepage": "https://www.slub-dresden.de",
"role": "maintainer"
}
],
"support": {
"issues": "https://github.com/kitodo/kitodo-presentation/issues",
"source": "https://github.com/kitodo/kitodo-presentation",
"docs": "https://docs.typo3.org/p/kitodo/presentation/master/en-us/"
},
"require": {
"php": "^7.3|^7.4",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"typo3/cms-core": "^9.5|^10.4",
"typo3/cms-extbase": "^9.5|^10.4",
"typo3/cms-tstemplate": "^9.5|^10.4",
"caseyamcl/phpoaipmh": "^3.0",
"ubl/php-iiif-prezi-reader": "0.3.0",
"solarium/solarium": "^4.2|^5.2"
},
"require-dev": {
"spatie/phpunit-watcher": "^1.23",
"typo3/cms-backend": "^9.5|^10.4",
"typo3/cms-fluid": "^9.5|^10.4",
"typo3/cms-fluid-styled-content": "^9.5|^10.4",
"typo3/cms-frontend": "^9.5|^10.4",
"typo3/testing-framework": "^4.15.5|^6.16.2"
},
"replace": {
"typo3-ter/dlf": "self.version"
},
"autoload": {
"psr-4": {
"Kitodo\\Dlf\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Kitodo\\DbDocs\\": "Build/Documentation/dbdocs",
"Kitodo\\Dlf\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "dlf",
"web-dir": "public"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p public/typo3conf/ext/",
"rm -f public/typo3conf/ext/dlf",
"ln -s ../../../ public/typo3conf/ext/dlf"
],
"test": [
"@test:unit",
"@test:func"
],
"install-via-docker": "Build/Test/runTests.sh -s composerInstall",
"test:unit": "Build/Test/runTests.sh -s unit",
"test:unit:local": "phpunit -c Build/Test/UnitTests.xml",
"test:unit:watch": "phpunit-watcher watch -c Build/Test/UnitTests.xml",
"test:func": "Build/Test/runTests.sh -s functional",
"test:func:watch": "@test:func -w",
"docs:db": "./Build/Documentation/dbdocs/generate.php ./Documentation/Developers/Database.rst",
"docs:setup": "./Build/Documentation/sphinx.sh install",
"docs:serve": "./Build/Documentation/sphinx.sh serve",
"docs:t3": "docker-compose -f ./Build/Documentation/docker-compose.t3docs.yml run --rm t3docs"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}