forked from instride-ch/pimcore-data-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·93 lines (93 loc) · 2.59 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
{
"name": "w-vision/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/w-vision/DataDefinitions",
"authors": [
{
"name": "w-vision AG",
"email": "[email protected]",
"homepage": "https://www.w-vision.ch",
"role": "Web Development Agency"
},
{
"name": "Dominik Pfaffenbauer",
"email": "[email protected]",
"homepage": "https://www.pfaffenbauer.at/",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"box/spout": "^3.0",
"coreshop/pimcore-bundle": "^4.0",
"coreshop/resource-bundle": "^4.0",
"coreshop/rule-bundle": "^4.0",
"jms/serializer": "^3.17.1",
"league/csv": "^9.7",
"nyholm/psr7": "^1.5",
"pimcore/admin-ui-classic-bundle": "^1.0",
"pimcore/pimcore": "^11.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"symfony/dotenv": "^6.3",
"symfony/http-client": "^6.3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"behat/behat": "^3.8",
"friends-of-behat/symfony-extension": "^2.1",
"phpstan/phpstan": "^1.5.4",
"phpstan/phpstan-doctrine": "^1.3.2",
"phpstan/phpstan-symfony": "^1.1.8",
"phpstan/phpstan-webmozart-assert": "^1.1.2"
},
"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": {
"Wvision\\Bundle\\DataDefinitionsBundle\\": "src/DataDefinitionsBundle"
}
},
"autoload-dev": {
"psr-4": {
"Wvision\\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": [
"Wvision\\Bundle\\DataDefinitionsBundle\\DataDefinitionsBundle"
]
},
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}