-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.39 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
{
"name": "felixnagel/fe-performance",
"description": "This TYPO3 CMS extension improves your frontend performance. Adds JavaScript minification for files and inline JS. Comes with some useful tweaks to improve asset rendering.",
"type": "typo3-cms-extension",
"keywords": ["TYPO3 CMS", "performance", "frontend", "javascript", "assets"],
"homepage": "https://extensions.typo3.org/extension/fe_performance",
"license": "GPL-3.0-or-later",
"support": {
"issues": "https://github.com/fnagel/fe_performance/issues",
"docs": "https://github.com/fnagel/fe_performance/blob/master/README.md",
"source": "https://github.com/fnagel/fe_performance"
},
"authors": [
{
"name": "Felix Nagel",
"email": "[email protected]",
"homepage": "http://www.felixnagel.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"typo3/cms-core": ">=12.4.0,<=13.4.99"
},
"require-dev": {
"ssch/typo3-rector": "^2.3"
},
"autoload": {
"psr-4": {
"FelixNagel\\FePerformance\\": "Classes"
},
"classmap": [
"Resources/Private/Php/JavaScriptMinifier.php",
"Resources/Private/Php/jsminplus.php"
]
},
"replace": {
"typo3-ter/fe_performance": "self.version"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/TYPO3/TYPO3.CMS"
}
],
"extra": {
"typo3/cms": {
"extension-key": "fe_performance"
}
}
}