-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcomposer.json
68 lines (68 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "leuchtfeuer/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.Leuchtfeuer.com",
"support": {
"email": "[email protected]",
"issues": "https://github.com/Leuchtfeuer/typo3-secure-downloads/issues",
"source": "https://github.com/Leuchtfeuer/typo3-secure-downloads/",
"docs": "https://docs.typo3.org/p/leuchtfeuer/secure-downloads/master/en-us/"
},
"authors": [
{
"name": "Dev",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.Leuchtfeuer.com"
}
],
"require": {
"php": ">= 8.2 < 8.5",
"typo3/cms-backend": "^13.4",
"typo3/cms-core": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-frontend": "^13.4",
"firebase/php-jwt": "^6.1",
"ext-pdo": "*"
},
"suggest": {
"ext-fileinfo": "For getting mime types from file path."
},
"autoload": {
"psr-4": {
"Leuchtfeuer\\SecureDownloads\\": "Classes"
}
},
"replace": {
"bitmotion/secure-downloads": "self.version",
"typo3-ter/secure-downloads": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "secure_downloads",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.10",
"typo3/coding-standards": "^0.7.1",
"typo3/testing-framework": "^8.0.1"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts":{
"fix:cs": "./vendor/bin/php-cs-fixer fix --config ./.php-cs-fixer.php --using-cache no --show-progress dots -v --diff --format=txt"
}
}