-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 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
42
43
44
45
46
47
{
"name": "felixnagel/mailfiles",
"type": "typo3-cms-extension",
"description": "TYPO3 CMS Extension to upload files and send download links via email. Uses plupload. Please see readme file.",
"license": "GPL-2.0-or-later",
"homepage": "https://extensions.typo3.org/extension/mailfiles",
"support": {
"issues": "https://github.com/fnagel/mailfiles/issues",
"docs": "https://github.com/fnagel/mailfiles/blob/master/README.md",
"source": "https://github.com/fnagel/mailfiles"
},
"authors": [
{
"name": "Felix Nagel",
"email": "info@felixnagel.com",
"homepage": "http://www.felixnagel.com",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"typo3/cms-core": "^12.4 | ^13",
"felixnagel/pluploadfe": "^7 || ^8 || @dev"
},
"require-dev": {
"ssch/typo3-rector": "^2.3"
},
"autoload": {
"psr-4": {
"FelixNagel\\Mailfiles\\": "Classes"
}
},
"replace": {
"typo3-ter/mailfiles": "self.version"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/TYPO3/TYPO3.CMS"
}
],
"extra": {
"typo3/cms": {
"extension-key": "mailfiles"
}
}
}