forked from xperseguers/t3ext-file_list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.3 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.3 KB
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": "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"
],
"support": {
"docs": "https://docs.typo3.org/p/causal/file_list/main/en-us/",
"issues": "https://github.com/xperseguers/t3ext-file_list/issues",
"source": "https://github.com/xperseguers/t3ext-file_list"
},
"authors": [
{
"name": "Xavier Perseguers",
"email": "xavier@causal.ch",
"homepage": "https://www.causal.ch",
"role": "Developer"
}
],
"license": "GPL-2.0-or-later",
"require": {
"php": ">= 8.1.0, <= 8.5.99",
"typo3/cms-core": "^12 || ^13 || 14.*.*@dev"
},
"suggest": {
"causal/fal-protect": "Used to prevent direct access to protected files"
},
"autoload": {
"psr-4": {
"Causal\\FileList\\": "Classes/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.4.x-dev"
},
"typo3/cms": {
"extension-key": "file_list"
}
}
}