forked from hmmh/backend-autologin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1009 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
39
40
41
42
43
44
{
"name": "hmmh/be-auto-login",
"description": "Auto BE login for TYPO3",
"keywords": ["typo3", "backend", "login", "developer", "auto"],
"type": "typo3-cms-extension",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Marc Wöhlken",
"email": "[email protected]",
"homepage": "https://hmmh.de/",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^8.7.0 || ^9.5.0 || ^10.4",
"helhum/dotenv-connector": "^2.0"
},
"require-dev": {
"typo3-console/php-server-command": "^0.2.0"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build"
}
},
"replace": {
"hmmh/be-autologin": "self.version"
},
"autoload": {
"psr-4": {
"HMMH\\BeAutoLogin\\": "Classes/"
}
},
"scripts-descriptions": {
"serve": "Start a PHP standalone webserver with TYPO3 instance."
},
"scripts": {
"serve": [
"typo3cms server:run 127.0.0.1:8080"
]
}
}