-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
executable file
·52 lines (52 loc) · 1.64 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
50
51
52
{
"name": "techdivision/import",
"description": "A library supporting generic Magento 2 import functionality",
"license": "MIT",
"require": {
"php": "^8.1",
"psr/log": "^1.0.0|^2.0.0|^3.0.0",
"psr/cache" : "^2.0.0|^3.0.0",
"psr/container": "^1.1.2",
"handcraftedinthealps/goodby-csv": "^1.4.2",
"monolog/monolog": "^2.9|^3.7",
"league/event": "^2.2.0",
"ramsey/uuid": "^4.2|^4.7",
"swiftmailer/swiftmailer": "v6.3.0",
"laminas/laminas-filter": "^2.31.0",
"techdivision/import-dbal": "^2.0.0",
"techdivision/import-dbal-collection": "^2.0.0",
"techdivision/import-cache": "^2.0.0",
"techdivision/import-cache-collection": "^2.0.0",
"techdivision/import-serializer": "^2.0.0",
"techdivision/import-serializer-csv": "^2.0.0",
"techdivision/import-configuration": "^6.0.0.",
"ext-json": "*",
"ext-zip": "*"
},
"require-dev": {
"doctrine/dbal": "^4.0.4",
"pdepend/pdepend": "^2.16.2",
"phpmd/phpmd": "^2.15.0",
"phpunit/phpunit": "^11.2.5",
"sebastian/phpcpd": "^2.0.1",
"squizlabs/php_codesniffer": "^3.10.1",
"consolidation/robo": "^4.0.2",
"mikey179/vfsstream": "~1.6.11",
"symfony/http-kernel": "~4.4.51"
},
"authors": [
{
"name": "Tim Wagner",
"email": "t.wagner@techdivision.com"
}
],
"autoload": {
"psr-4": {
"TechDivision\\Import\\": [
"src/",
"symfony/",
"tests/unit/"
]
}
}
}