-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.61 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.61 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
{
"name": "pimcore/data-importer",
"license": "proprietary",
"type": "pimcore-bundle",
"description": "Adds a comprehensive import functionality to Pimcore Datahub",
"config": {
"sort-packages": true,
"preferred-install": {
"pimcore/pimcore": "source",
"*": "dist"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "~8.4.0 || ~8.5.0",
"ext-fileinfo": "*",
"ext-json": "*",
"doctrine/dbal": "^4.4",
"dragonmantank/cron-expression": "^3.1",
"league/flysystem-sftp-v3": "^3.0",
"mtdowling/jmespath.php": "^2.8",
"nesbot/carbon": "^2.72 || ^3.8.4",
"phpoffice/phpspreadsheet": "^4.3 || ^5.1",
"pimcore/data-hub": "^2026.1.3",
"pimcore/pimcore": "^2026.1",
"pimcore/studio-backend-bundle": "^2026.1",
"pimcore/studio-ui-bundle": "^2026.2.6",
"webmozarts/console-parallelization": "^1.2.0 || ^2.0.0"
},
"require-dev": {
"phpstan/phpstan": "2.1.40",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^12.5.23 || ^13.1.7",
"codeception/codeception": "^5.3.5",
"codeception/module-asserts": "^3.0",
"codeception/module-symfony": "^3.8"
},
"autoload": {
"psr-4": {
"Pimcore\\Bundle\\DataImporterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pimcore\\Bundle\\DataImporterBundle\\Tests\\": "tests"
},
"files": [
"kernel/Kernel.php"
]
},
"extra": {
"branch-alias": {
"dev-2026.x": "2026.1.x-dev"
},
"pimcore": {
"bundles": [
"Pimcore\\Bundle\\DataImporterBundle\\PimcoreDataImporterBundle"
]
}
}
}