forked from sirdiego/importr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.52 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.52 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
{
"name": "sirdiego/importr",
"type": "typo3-cms-extension",
"description": "Flexible importer for all kinds of files!",
"autoload": {
"psr-4": {
"HDNET\\Importr\\": "Classes/",
"Symfony\\Component\\Yaml\\": "Resources/Private/Php/Yaml/"
}
},
"autoload-dev": {
"psr-4": {
"HDNET\\Importr\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"keywords": [
"TYPO3 CMS",
"Importer"
],
"authors": [
{
"name": "Tim Spiekerkötter",
"role": "Developer",
"homepage": "https://github.com/sirdiego"
}
],
"require": {
"php": ">=7.1.0",
"typo3/cms-core": "^8.7||^9.5"
},
"suggest": {
"phpoffice/phpexcel": "Use Excel files as import resource"
},
"replace": {
"typo3-ter/importr": "self.version"
},
"homepage": "https://github.com/sirdiego/importr",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/sirdiego/importr/issues"
},
"require-dev": {
"namelesscoder/typo3-repository-client": "^1.1",
"squizlabs/php_codesniffer": "^2.6",
"phpmd/phpmd": "^2.4",
"scrutinizer/ocular": "^1.3.0",
"mikey179/vfsstream": "~1",
"typo3/testing-framework": "^2.0.4"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
}
}