-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.49 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
{
"name": "hmmh/safes4typo3",
"license": "GPL-2.0",
"type": "library",
"description": "Front-end stage server for developing stand-alone fluid templates without having to use TYPO3.",
"keywords": [
"frontend",
"front-end",
"standalone",
"stand-alone",
"stage",
"staging",
"scaffolding",
"skeleton",
"server",
"decoupled",
"fluid",
"typo3"
],
"require": {
"php": "^7.1",
"ext-simplexml": "*",
"composer/composer": "^1.9.0",
"typo3fluid/fluid": "^2.6",
"symfony/yaml": "^4.2",
"helhum/dotenv-connector": "^2.1",
"tracy/tracy": "^2.6"
},
"autoload": {
"psr-4": {
"HMMH\\SAFES\\": "Classes/"
},
"files": [
"Mockups/CObjectViewHelper.php",
"Mockups/TranslateViewHelper.php"
]
},
"authors": [
{
"name": "Jan Runte - HMMH AG",
"email": "[email protected]",
"homepage": "https://www.github.com/hmmh/standalone-frontend-scaffolding"
}
],
"config": {
"process-timeout": 0
},
"bin": [
"bin/safes"
],
"scripts": {
"run": [
"HMMH\\SAFES\\DeveloperHelper::runSafes"
],
"safes": [
"HMMH\\SAFES\\DeveloperHelper::openBrowser",
"@php -S 127.0.0.1:8080 -t ${SAFES_PUBLIC_ROOT} vendor/hmmh/safes4typo3/Router.php"
]
}
}