forked from lochmueller/staticfilecache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
executable file
·27 lines (25 loc) · 773 Bytes
/
ext_emconf.php
File metadata and controls
executable file
·27 lines (25 loc) · 773 Bytes
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
<?php
declare(strict_types=1);
$EM_CONF[$_EXTKEY] = [
'title' => 'Static File Cache',
'description' => 'Transparent static file cache solution using mod_rewrite and mod_expires. Increase performance for static pages by a factor of 230!!',
'category' => 'fe',
'version' => '5.3.4',
'state' => 'stable',
'modify_tables' => 'pages',
'clearcacheonload' => true,
'author' => 'Static File Cache Team',
'author_email' => 'tim@fruit-lab.de',
'author_company' => 'Static File Cache Team',
'constraints' => [
'depends' => [
'typo3' => '8.7.0-9.2.99',
'php' => '7.0.0-0.0.0',
],
],
'autoload' => [
'psr-4' => [
'SFC\\Staticfilecache\\' => 'Classes'
],
],
];