-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·73 lines (73 loc) · 1.46 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
{
"name": "somehow-digital/typo3-media-processing",
"type": "typo3-cms-extension",
"description": "Media Processing",
"homepage": "https://somehow.digital/",
"license": [
"GPL-3.0"
],
"keywords": [
"typo3",
"extension",
"media",
"image",
"performance",
"responsive",
"crop",
"resize",
"imgproxy",
"imagor",
"thumbor",
"optimole",
"cloudflare",
"imagekit",
"bunny",
"sirv",
"avif",
"webp",
"heic",
"heif"
],
"authors": [
{
"name": "Thomas Deinhamer",
"email": "[email protected]",
"homepage": "https://thasmo.com/"
}
],
"support": {
"email": "[email protected]",
"docs": "https://github.com/somehow-digital/typo3-media-processing",
"source": "https://github.com/somehow-digital/typo3-media-processing",
"issues": "https://github.com/somehow-digital/typo3-media-processing/issues"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"ext-openssl": "*",
"smalot/pdfparser": "^v2.11.0",
"symfony/options-resolver": "^6.4 || ^7.1",
"typo3/cms-core": "^12.4 || dev-main"
},
"require-dev": {
"johnbacon/stout": "^1.51",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"SomehowDigital\\Typo3\\MediaProcessing\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "media_processing"
}
}
}