-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
56 lines (56 loc) · 1.7 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
{
"name": "causal/image_autoresize",
"type": "typo3-cms-extension",
"description": "Simplify the way your editors may upload their images: no complex local procedure needed, let TYPO3 automatically resize down their huge images/pictures on-the-fly during upload (or using a command for batch processing) and according to your own business rules (directory/groups). This will highly reduce the footprint on your server and speed-up response time if lots of images are rendered (e.g., in a gallery). Features an EXIF/IPTC extractor to ensure metadata may be used by the FAL indexer even if not preserved upon resizing.",
"keywords": [
"TYPO3 CMS",
"image",
"picture",
"autoresize",
"auto-resize",
"upload",
"batch",
"exif",
"iptc",
"fal",
"footprint",
"performance"
],
"support": {
"docs": "https://docs.typo3.org/p/causal/image_autoresize/main/en-us/",
"issues": "https://github.com/xperseguers/t3ext-image_autoresize/issues",
"source": "https://github.com/xperseguers/t3ext-image_autoresize"
},
"authors": [
{
"name": "Xavier Perseguers",
"email": "[email protected]",
"homepage": "https://www.causal.ch",
"role": "Developer"
}
],
"license": [
"GPL-2.0-or-later",
"GPL-3.0-or-later"
],
"require": {
"php": ">=7.4.0 <=7.4.99 || >=8.0.0 <=8.4.99",
"ext-exif": "*",
"ext-json": "*",
"typo3/cms-core": "^10 || ^11 || ^12 || ^13"
},
"autoload": {
"psr-4": {
"Causal\\ImageAutoresize\\": "Classes/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.4.x-dev",
"dev-2-1-stable": "2.1.x-dev"
},
"typo3/cms": {
"extension-key": "image_autoresize"
}
}
}