forked from instride-ch/pimcore-data-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·77 lines (77 loc) · 2.1 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
{
"name": "w-vision/data-definitions",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"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": "support@w-vision.ch",
"homepage": "https://www.w-vision.ch",
"role": "Web Development Agency"
},
{
"name": "Dominik Pfaffenbauer",
"email": "dominik@pfaffenbauer.at",
"homepage": "https://www.pfaffenbauer.at/",
"role": "Developer"
}
],
"require": {
"coreshop/resource-bundle": "^3.0",
"coreshop/rule-bundle": "^3.0",
"coreshop/pimcore-bundle": "^3.0",
"coreshop/pimcore": "^3.0",
"pimcore/pimcore": "^6.5",
"league/csv": "^9.0",
"box/spout": "^2.7"
},
"require-dev": {
"behat/behat": "^3.3",
"friends-of-behat/symfony-extension": "^2.0.0",
"phpstan/phpstan": "^0.10.5",
"phpstan/phpstan-doctrine": "^0.10",
"phpstan/phpstan-shim": "^0.10",
"phpstan/phpstan-symfony": "^0.10",
"phpstan/phpstan-webmozart-assert": "^0.10",
"symplify/easy-coding-standard": "^4.3.0"
},
"conflict": {
"dpfaffenbauer/process-manager": "<2.4"
},
"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": [
"app/AppKernel.php"
]
},
"extra": {
"pimcore": {
"bundles": [
"Wvision\\Bundle\\DataDefinitionsBundle\\DataDefinitionsBundle"
]
},
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}