-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.19 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
{
"name": "sudhaus7/xlsexport",
"description": "(Sudhaus7) XLS-Exporter",
"version": "1.0.1",
"type": "typo3-cms-extension",
"license": "MIT",
"authors": [
{
"name": "Frank Berger",
"role": "Developer"
},
{
"name": "Markus Hofmann",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "~8.7 | ~9.5 | ~10.4.2",
"phpoffice/phpspreadsheet": "^1.10"
},
"require-dev": {
"typo3/cms-fluid-styled-content": "~10.4.2",
"typo3/cms-tstemplate": "~10.4.2",
"typo3/cms-backend": "~10.4.2",
"phpstan/phpstan": "^0.11",
"codeception/codeception": "^3.1",
"codeception/phpbuiltinserver": "^1.5",
"helhum/typo3-console": "^6.0",
"friendsoftypo3/tt-address": "^5"
},
"extra": {
"typo3/cms": {
"extension-key": "xlsimport",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public"
}
},
"autoload": {
"psr-4": {
"SUDHAUS7\\Xlsexport\\": "Classes/"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/xlsexport ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/xlsexport"
]
}
}