forked from Leuchtfeuer/typo3-aws-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.13 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
{
"name": "leuchtfeuer/aws-tools",
"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.",
"keywords": [
"AWS",
"Amazon Web Services",
"CloudFront",
"CDN",
"TYPO3"
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://www.leuchtfeuer.com",
"authors": [
{
"name": "Dev",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.Leuchtfeuer.com"
}
],
"autoload": {
"psr-4": {
"Leuchtfeuer\\AwsTools\\": "Classes/"
}
},
"require": {
"aws/aws-sdk-php": "^3.149",
"typo3/cms-backend": "^11.5",
"typo3/cms-core": "^11.5",
"typo3/cms-extbase": "^11.5"
},
"replace": {
"typo3-ter/aws-tools": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "aws_tools"
}
}
}