forked from akiessling/t3ext-auth_basic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.16 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
{
"name": "extrameile/auth-basic",
"type": "typo3-cms-extension",
"description": "Protect frontend pages via auth basic",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Andreas Kießling",
"role": "Developer"
}
],
"repositories": {
"grumphp-conventions-typo3": {
"type": "vcs",
"url": "https://github.com/extrameile/grumphp-conventions-typo3.git"
}
},
"require": {
"typo3/cms-core": "^9.5 || ^10.4",
"typo3/cms-backend": "^9.5 || ^10.4",
"middlewares/http-authentication": "^1.1"
},
"require-dev": {
"extrameile/grumphp-conventions-typo3": "dev-master"
},
"autoload": {
"psr-4": {
"Extrameile\\AuthBasic\\": "Classes"
}
},
"replace": {
"typo3-ter/auth-basic": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "auth_basic"
}
}
}