-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.2 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
{
"name": "wineworlds/image-on-demand-service",
"type": "typo3-cms-extension",
"description": "A TYPO3 extension for providing on-demand image processing services.",
"homepage": "https://www.wineworlds.de",
"license": "MIT",
"version": "1.1.4",
"authors": [
{
"name": "Kubilay Melnikov",
"role": "Developer",
"email": "[email protected]",
"homepage": "https://www.wineworlds.de/team#kubilay_melnikov"
},
{
"name": "Arnd Messer",
"role": "Developer",
"email": "[email protected]",
"homepage": "https://www.wineworlds.de/team#arnd_messer"
},
{
"name": "Miro Olma",
"role": "Developer",
"email": "[email protected]",
"homepage": "https://www.wineworlds.de/team#miro_olma"
}
],
"keywords": [
"TYPO3 CMS",
"Image Processing",
"Image Service"
],
"require": {
"typo3/cms-core": "^11.5.26 || ^12.4 || dev-main",
"typo3/cms-extbase": "^11.5.26 || ^12.4 || dev-main"
},
"autoload": {
"psr-4": {
"Wineworlds\\ImageOnDemandService\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "image_on_demand_service"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}