forked from TYPO3-extensions/naw_securedl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 992 Bytes
/
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
{
"name": "bitmotion/naw-securedl",
"type": "typo3-cms-extension",
"description": "\"Secure Download\": Apply TYPO3 access rights to ALL file assets (PDFs, TGZs or JPGs etc. - configurable) - protect them from direct access.",
"homepage": "http://forge.typo3.org/projects/extension-naw_securedl/",
"license": [
"GPL-2.0+"
],
"version": "1.8.4",
"require": {
"php": ">=7.0,<8.0",
"typo3/cms-core": ">=7.6,<9.0"
},
"replace": {
"naw_securedl": "self.version",
"typo3-ter/naw-securedl": "self.version"
},
"autoload": {
"psr-4": {
"Bitmotion\\NawSecuredl\\": "Classes/"
}
},
"extra": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
],
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
},
"typo3/class-alias-loader": {
"always-add-alias-loader": true,
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
}
}
}