-
Notifications
You must be signed in to change notification settings - Fork 63
/
composer.json
45 lines (45 loc) · 1.25 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
{
"name": "beechit/fal-securedownload",
"description": "Secure download of assets. Makes it possible to secure FE use of assets/files by setting permissions to folders/files for fe_groups.",
"type": "typo3-cms-extension",
"keywords": [
"typo3",
"TYPO3 CMS",
"FAL",
"secure download"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Frans Saris",
"email": "[email protected]",
"homepage": "https://www.beech.it/",
"role": "Lead Developer"
}
],
"homepage": "https://github.com/beechit/fal_securedownload/",
"support": {
"email": "[email protected]",
"issues": "https://github.com/beechit/fal_securedownload/issues",
"source": "https://github.com/beechit/fal_securedownload"
},
"require": {
"typo3/cms-core": "^11.5 || ^12.4"
},
"replace": {
"typo3-ter/fal-securedownload": "self.version"
},
"autoload": {
"psr-4": {
"BeechIt\\FalSecuredownload\\": "Classes/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"typo3/cms": {
"extension-key": "fal_securedownload"
}
}
}