forked from schmitzal/tinyimg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.19 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
{
"name": "schmitzal/tinyimg",
"description": "Image compression for all pngs and jpgs uploaded to the backend (using the tinypng API)",
"type": "typo3-cms-extension",
"keywords": [
"image",
"compression",
"tinypng",
"tinyjpg",
"tinify"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Alessandro Schmitz",
"role": "Developer",
"homepage": "https://www.interlutions.de/"
}
],
"support": {
"issues": "https://github.com/schmitzal/tinyimg/issues"
},
"require": {
"typo3/cms-core": "^8.7.33 || ^9.5.17 || ^10.4.2",
"tinify/tinify": "^1.5"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.6"
},
"autoload": {
"psr-4": {
"Schmitzal\\Tinyimg\\": "Classes"
}
},
"replace": {
"tinyimg": "self.version",
"typo3-ter/tinyimg": "self.version"
},
"extra": {
"typo3/cms": {
"cms-package-dir": ".Build/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
}
}