forked from Leuchtfeuer/typo3-secure-downloads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (46 loc) · 1.19 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
{
"name": "bitmotion/secure-downloads",
"description": "\"Secure Download\": Apply TYPO3 access rights to ALL file assets (PDFs, TGZs or JPGs etc. - configurable) - protect them from direct access.",
"keywords": [
"TYPO3",
"Downloads",
"Secure"
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://www.bitmotion.de",
"support": {
"email": "[email protected]",
"issues": "https://github.com/bitmotion/typo3-secure-downloads/issues",
"source": "https://github.com/bitmotion/typo3-secure-downloads/"
},
"authors": [
{
"name": "Florian Wessels",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.bitmotion.de"
},
{
"name": "Helmut Hummel",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://helhum.io/"
}
],
"require": {
"typo3/cms-core": "^8.7 || ^9.5"
},
"conflict": {
"typo3-ter/naw-securedl": "*"
},
"autoload": {
"psr-4": {
"Bitmotion\\SecureDownloads\\": "Classes"
}
},
"replace": {
"secure_downloads": "self.version",
"typo3-ter/secure-downloads": "self.version"
}
}