-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (44 loc) · 1.01 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
{
"name": "divante-ltd/pimcore-classification-store-importer",
"description": "Pimcore bundle for Classificationstore import and export",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Wojciech Peisert",
"email": "[email protected]",
"homepage": "https://divante.co/",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"ext-intl" : "*",
"pimcore/pimcore": ">=5.7"
},
"autoload": {
"psr-4": {
"Divante\\ClassificationstoreBundle\\": "src/ClassificationstoreBundle/"
}
},
"autoload-dev": {
"psr-4": {
"Divante\\ClassificationstoreBundle\\Test\\": "tests/unit/tests/ClassificationstoreBundle/"
},
"classmap": [
"app/AppKernel.php"
]
},
"extra": {
"pimcore": {
"bundles": [
"Divante\\ClassificationstoreBundle\\ClassificationstoreBundle"
]
}
},
"require-dev": {
"symfony/phpunit-bridge": "^4.1",
"phpunit/phpunit": "^7.4"
}
}