-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 939 Bytes
/
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": "niji/akeneo-labelized-export-bundle",
"type": "symfony-bundle",
"description": "Akeneo bundle that add an XLSX export profile which use labels instead of codes for attribute names and value.",
"keywords": [
"Akeneo",
"Export",
"Labelized",
"Akeneo"
],
"license": "MIT",
"authors": [
{
"name": "Bertrand Presles",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/akeneo/pim-community-dev.git",
"branch": "master"
}
],
"require": {
"php": "^7.0",
"akeneo/pim-community-dev": "^2.3"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Niji\\AkeneoLabelizedExportBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Niji\\AkeneoLabelizedExportBundle\\Tests\\": "/Tests/"
}
}
}