-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.03 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
{
"name" : "itx/importer",
"type" : "typo3-cms-extension",
"authors" : [
{
"name": "Benjamin Jasper",
"email": "benjamin.jasper@itx.de"
}
],
"description" : "A TYPO3 extension which contains a failure safe framework for building structured import processes.",
"homepage" : "https://www.itx.de/",
"license" : [
"GPL-2.0-or-later"
],
"keywords" : [
"TYPO3 CMS"
],
"support" : {
"email" : "typo-itx@itx.de",
"issues" : "https://github.com/itx-informationssysteme/typo3-importer/issues",
"docs" : "https://github.com/itx-informationssysteme/typo3-importer"
},
"require" : {
"php" : ">=8.1",
"typo3/cms-core" : "^13",
"typo3/cms-rte-ckeditor" : "^13",
"typo3/cms-fluid-styled-content" : "^13",
"typo3/cms-beuser" : "^13",
"typo3/cms-backend" : "^13",
"typo3/cms-scheduler" : "^13",
"symfony/serializer" : "^6"
},
"require-dev" : {
"phpstan/phpstan" : "^1.4"
},
"autoload" : {
"psr-4" : {
"Itx\\Importer\\" : "Classes/"
}
},
"extra" : {
"typo3/cms" : {
"extension-key" : "importer"
}
}
}