forked from instride-ch/pimcore-data-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·81 lines (80 loc) · 2.11 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
{
"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",
"league/csv": "^9.7",
"coreshop/resource-bundle": "^3.0",
"coreshop/rule-bundle": "^3.0",
"coreshop/pimcore-bundle": "^3.0",
"pimcore/pimcore": "^10.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"behat/behat": "^3.8",
"friends-of-behat/symfony-extension": "^2.2.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"phpstan/phpstan-webmozart-assert": "^0.12"
},
"conflict": {
},
"suggest": {
"dpfaffenbauer/process-manager": "Allows to start Imports/Exports from within Pimcore UI and also tracks Status of current processes."
},
"autoload": {
"psr-4": {
"Wvision\\Bundle\\DataDefinitionsBundle\\": "src/DataDefinitionsBundle"
}
},
"autoload-dev": {
"psr-4": {
"Wvision\\Bundle\\DataDefinitionsBundle\\Behat\\": "tests/DataDefinitionsBundle/Behat"
},
"classmap": [
"src/Kernel.php"
]
},
"extra": {
"pimcore": {
"bundles": [
"Wvision\\Bundle\\DataDefinitionsBundle\\DataDefinitionsBundle"
]
},
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}