-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
41 lines (39 loc) · 1.32 KB
/
ext_emconf.php
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
<?php
/***************************************************************
* Extension Manager/Repository config file for ext "fe_performance".
*
* Auto generated 10-06-2013 22:33
*
* Manual updates:
* Only the data in the array - everything else is removed by next
* writing. "version" and "dependencies" must not be touched!
***************************************************************/
$EM_CONF[$_EXTKEY] = [
'title' => 'Frontend Performance',
'description' => 'This TYPO3 CMS extension improves your frontend performance. Adds JavaScript and HTML minification. Comes with some useful tweaks to improve asset rendering. See readme for more info.',
'category' => 'fe',
'author' => 'Felix Nagel',
'author_email' => 'info@felixnagel.com',
'author_company' => '',
'state' => 'stable',
'version' => '2.3.1-dev',
'constraints' => [
'depends' => [
'php' => '8.1.0-8.3.99',
'typo3' => '12.4.0-13.4.99',
],
'conflicts' => [
'scriptmerger' => '',
],
'suggests' => [],
],
'autoload' => [
'psr-4' => [
'FelixNagel\\FePerformance\\' => 'Classes',
],
'classmap' => [
"Resources/Private/Php/JavaScriptMinifier.php",
"Resources/Private/Php/jsminplus.php"
],
],
];