forked from Leuchtfeuer/typo3-aws-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
26 lines (25 loc) · 852 Bytes
/
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
<?php
$EM_CONF['aws_tools'] = [
'title' => 'Amazon Web Services (AWS) Toolbox',
'description' => 'This extension connects your TYPO3 instance to Amazon CloudFront. It rewrites all file paths in the frontend to match your CDN domain. You also have the possibility to invalidate Amazon CloudFront entries.',
'version' => '11.0.1',
'category' => 'misc',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-11.5.99',
],
'conflicts' => [],
'suggests' => [],
],
'state' => 'stable',
'uploadfolder' => false,
'clearCacheOnLoad' => false,
'author' => 'Dev',
'author_email' => '[email protected]',
'author_company' => 'Leuchtfeuer Digital Marketing',
'autoload' => [
'psr-4' => [
'Leuchtfeuer\\AwsTools\\' => 'Classes',
],
],
];