-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.18 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
{
"name": "andreaskiessling/form-editor-launcher",
"type": "typo3-cms-extension",
"description": "",
"authors": [],
"require": {
"typo3/cms-core": "~8.7.0 || ~9.5.0",
"typo3/cms-form": "~8.7.0 || ~9.5.0",
"typo3/cms-filelist": "~8.7.0 || ~9.5.0"
},
"autoload": {
"psr-4": {
"AndreasKiessling\\FormEditorLauncher\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"AndreasKiessling\\FormEditorLauncher\\Tests\\": "Tests"
}
},
"replace": {
"andreaskiessling/form-editor-launcher": "self.version",
"typo3-ter/form-editor-launcher": "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"
}
},
"repositories": {
"grumphp-conventions-typo3": {
"type": "vcs",
"url": "https://github.com/akiessling/grumphp-conventions-typo3.git"
}
},
"require-dev": {
"andreaskiessling/grumphp-conventions-typo3": "dev-master"
}
}