-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
133 lines (133 loc) · 3.71 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"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.opencultureconsulting.com",
"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/main/en-us/"
},
"require": {
"php": "7.4 - 8.3",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"typo3/cms-core": "^11.5.40|^12.4.21",
"typo3/cms-extbase": "^11.5.40|^12.4.21",
"typo3/cms-scheduler": "^11.5.40|^12.4.21",
"typo3/cms-tstemplate": "^11.5.40|^12.4.21",
"caseyamcl/phpoaipmh": "^3.3.1",
"slub/php-mods-reader": "^0.4.0",
"ubl/php-iiif-prezi-reader": "0.3.0",
"solarium/solarium": "5.2 - 6.3",
"symfony/process": "^5.4|^6.4"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^9.6.20",
"spatie/phpunit-watcher": "^1.23",
"typo3/cms-backend": "^11.5.40|^12.4.21",
"typo3/cms-fluid": "^11.5.40|^12.4.21",
"typo3/cms-fluid-styled-content": "^11.5.40|^12.4.21",
"typo3/cms-frontend": "^11.5.40|^12.4.21",
"typo3/testing-framework": "^7.1.0",
"vlucas/phpdotenv": "^5.6.1"
},
"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:build": [
"rm -Rf ./Documentation-GENERATED-temp",
"docker run --user=$(id -u):$(id -g) --rm -v ./:/project -it ghcr.io/typo3-documentation/render-guides:latest --config ./Documentation",
"cp ./Build/Documentation/index.html ./Documentation-GENERATED-temp"
],
"docs:start": [
"docker run -d --name dlf_docs --rm -v ./Documentation-GENERATED-temp:/serve -p 9000:8000 jdkelley/simple-http-server:latest"
],
"docs:stop": [
"docker stop dlf_docs"
],
"docs:rebuild": [
"@composer docs:stop",
"@composer docs:build",
"@composer docs:start"
],
"phpstan": [
"@php vendor/bin/phpstan --configuration=\".github/phpstan.neon\""
]
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}