-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.74 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.74 KB
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
61
62
63
64
65
{
"name": "cobweb/external_import",
"type": "typo3-cms-extension",
"description": "Tool for importing data from external sources into the TYPO3 database, using an extended TCA syntax. Provides a BE module, a Scheduler task, a command-line tool, reactions and an API.",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Francois Suter",
"role": "Developer",
"email": "typo3@ideative.ch",
"homepage": "https://www.ideative.ch/"
}
],
"support": {
"issues": "https://github.com/cobwebch/external_import/issues",
"docs": "https://docs.typo3.org/p/cobweb/external_import/master/en-us/"
},
"autoload": {
"psr-4": {
"Cobweb\\ExternalImport\\": "Classes/"
}
},
"require": {
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4",
"typo3/cms-core": "^12.4 || ^13.4",
"typo3/cms-extbase": "*",
"typo3/cms-scheduler": "^12.4 || ^13.4",
"typo3/cms-reactions": "^12.4 || ^13.4",
"typo3/cms-install": "^12.4 || ^13.4",
"typo3/coding-standards": "*",
"cobweb/svconnector": "^6.0"
},
"require-dev": {
"cobweb/externalimport_test": "^0.15.0",
"cobweb/svconnector_csv": "^5.0",
"cobweb/svconnector_feed": "^5.0",
"cobweb/svconnector_json": "^5.0",
"ergebnis/composer-normalize": "~2.45.0",
"friendsofphp/php-cs-fixer": "^3.52",
"typo3/testing-framework": "^8.2",
"phpstan/phpstan": "^1.10",
"ssch/typo3-rector": "^2.13"
},
"extra": {
"branch-alias": {
"dev-master": "8.0.x-dev"
},
"typo3/cms": {
"extension-key": "external_import",
"web-dir": ".Build/web"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"ergebnis/composer-normalize": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
}
}