forked from xperseguers/t3ext-file_list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.29 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
47
48
{
"name": "causal/file_list",
"type": "typo3-cms-extension",
"description": "This extension provides a frontend plugin which shows a list of files and folders in a specified directory on the file system (comparable to Apache directory listing) or using more advanced FAL selectors (categories, collection of files, ...). This extension may also be used for creating image galleries.",
"keywords": [
"TYPO3 CMS",
"list",
"files",
"directories",
"gallery"
],
"homepage": "https://github.com/xperseguers/t3ext-file_list",
"support": {
"issues": "https://github.com/xperseguers/t3ext-file_list/issues"
},
"authors": [
{
"name": "Xavier Perseguers",
"email": "[email protected]",
"homepage": "https://www.causal.ch",
"role": "Developer"
}
],
"license": "GPL-2.0-or-later",
"require": {
"php": ">= 7.2.0, <= 7.4.99",
"typo3/cms-core": "^8.7 || ^9.5 || ^10"
},
"suggest": {
"causal/fal-protect": "Used to prevent direct access to protected files"
},
"autoload": {
"psr-4": {
"Causal\\FileList\\": "Classes/"
}
},
"replace": {
"typo3-ter/file-list": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "2.5.x-dev"
},
"typo3/cms": {
"extension-key": "file_list"
}
}
}