-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·45 lines (45 loc) · 1.34 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": "techdivision/import-converter-customer-attribute",
"description": "Pacemaker library providing the functionality to convert a CSV file with attribute option values from a CSV file with customer",
"license": "MIT",
"require": {
"php": "^8.1",
"techdivision/import-customer": "^18.0.0",
"techdivision/import-attribute": "^23.0.0",
"techdivision/import-converter": "^12.0.0"
},
"require-dev": {
"doctrine/dbal": "^4.0.4",
"pdepend/pdepend": "^2.16.2",
"phpmd/phpmd": "^2.15.0",
"phpunit/phpunit": "^11.2.5",
"sebastian/phpcpd": "^2.0.1",
"squizlabs/php_codesniffer": "^3.10.1",
"consolidation/robo": "^4.0.2",
"mikey179/vfsstream": "~1.6.11",
"symfony/http-kernel": "~4.4.51"
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Tim Wagner",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TechDivision\\Import\\Converter\\Customer\\Attribute\\": [
"src/",
"symfony/"
]
}
},
"autoload-dev": {
"psr-4": {
"TechDivision\\Import\\Converter\\Customer\\Attribute\\": [
"tests/unit"
]
}
}
}