-
Notifications
You must be signed in to change notification settings - Fork 58
/
composer.json
executable file
·94 lines (94 loc) · 2.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "instride/data-definitions",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"description": "Data Definitions allows you to define your DataObject Imports and Exports using a nice GUI and re-run the definitions as often you like.",
"keywords": [
"pimcore",
"imports",
"pimcore-plugin",
"pimcore-bundle"
],
"homepage": "https://github.com/instride-ch/DataDefinitions",
"authors": [
{
"name": "instride AG",
"email": "[email protected]",
"homepage": "https://instride.ch",
"role": "Digital Agency"
},
{
"name": "CORS GmbH",
"email": "[email protected]",
"homepage": "https://cors.gmbh",
"role": "Digital Agency"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"coreshop/pimcore-bundle": "^4.0",
"coreshop/resource-bundle": "^4.0",
"coreshop/rule-bundle": "^4.0",
"jms/serializer": "^3.17",
"league/csv": "^9.7",
"nyholm/psr7": "^1.5",
"openspout/openspout": "^4.23",
"pimcore/admin-ui-classic-bundle": "^1.4",
"pimcore/pimcore": "^11.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"symfony/dotenv": "^6.3 | ^7.0",
"symfony/http-client": "^6.3 | ^7.0"
},
"require-dev": {
"behat/behat": "^3.8",
"friends-of-behat/symfony-extension": "^2.1",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-symfony": "^1.1",
"phpstan/phpstan-webmozart-assert": "^1.1",
"roave/security-advisories": "dev-latest",
"symplify/easy-coding-standard": "^11"
},
"conflict": {
"guzzlehttp/psr7": "< 2.0"
},
"suggest": {
"dpfaffenbauer/process-manager": "Allows to start Imports/Exports from within Pimcore UI and also tracks Status of current processes.",
"guzzlehttp/psr7": "For downloading external data like Images"
},
"autoload": {
"psr-4": {
"Instride\\Bundle\\DataDefinitionsBundle\\": "src/DataDefinitionsBundle"
}
},
"autoload-dev": {
"psr-4": {
"Instride\\Bundle\\DataDefinitionsBundle\\Behat\\": "tests/DataDefinitionsBundle/Behat",
"Pimcore\\Model\\DataObject\\": [
"var/classes/DataObject",
"var/tmp/behat/var/classes/DataObject"
]
},
"classmap": [
"src/Kernel.php"
]
},
"extra": {
"pimcore": {
"bundles": [
"Instride\\Bundle\\DataDefinitionsBundle\\DataDefinitionsBundle"
]
},
"branch-alias": {
"dev-5.0": "5.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}