-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.1 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
{
"name": "andreaskiessling/auth-basic",
"type": "typo3-cms-extension",
"description": "Protect frontend pages via auth basic",
"authors": [
{
"name": "Andreas Kießling",
"role": "Developer"
}
],
"repositories": {
"grumphp-conventions-typo3": {
"type": "vcs",
"url": "https://github.com/akiessling/grumphp-conventions-typo3.git"
}
},
"require": {
"typo3/cms-core": "^9.5",
"middlewares/http-authentication": "^1.1"
},
"require-dev": {
"andreaskiessling/grumphp-conventions-typo3": "dev-master"
},
"autoload": {
"psr-4": {
"AndreasKiessling\\AuthBasic\\": "Classes"
}
},
"replace": {
"andreaskiessling/auth-basic": "self.version",
"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"
}
}
}