forked from a-r-m-i-n/min
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 955 Bytes
/
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
{
"name": "t3/min",
"description": "Extends TYPO3's compressor for JS and CSS with minifier. This may save you up to 60% of default compressed file size. Also compresses HTML output of TYPO3. Full composer support.",
"type": "typo3-cms-extension",
"homepage": "https://extensions.typo3.org/extension/min/",
"license": "GPL-2.0+",
"authors": [
{
"name": "Armin Vieweg",
"role": "Developer",
"email": "[email protected]",
"homepage": "https://v.ieweg.de"
}
],
"require": {
"php": ">=7.4",
"typo3/cms-core": "^10.4 || ^11.0",
"matthiasmullie/minify": "^1.3"
},
"autoload": {
"psr-4": {
"T3\\Min\\": "Classes"
}
},
"replace": {
"arminvieweg/tinysource": "*",
"instituteweb/min": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "min"
}
}
}