-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
40 lines (40 loc) · 988 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
{
"name": "ecomdev/sync-magento-2-migration",
"description": "Migration Application for M1 -> M2",
"type": "project",
"require": {
"php": "8.2",
"laminas/laminas-db": "^2.15",
"nanawel/zend-db-sql-insertmultiple": "2.1",
"league/climate": "^3.5",
"league/csv": "^9.2",
"laminas/laminas-dependency-plugin": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"license": "MIT",
"authors": [
{
"name": "Ivan Chepurnyi",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"EcomDev\\MagentoMigration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EcomDev\\MagentoMigration\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"laminas/laminas-dependency-plugin": true
}
}
}