-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 941 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 941 Bytes
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
{
"name": "cleatsquad/magento2-prestashop-migration-tools",
"description": "Migration Tool from prestashop to Magento 2",
"keywords": ["prestashop", "magento2", "migration"],
"license": "MIT",
"type": "magento2-basic",
"type": "magento2-module",
"authors": [
{
"name": "Mohamed El Mrabet",
"email": "mimou78@gmail.com"
}
],
"version": "1.0.0",
"require": {
"php": ">=5.4.0",
"symfony/console": "~2.3, !=2.7.0",
"monolog/monolog": "^1.17",
"symfony/options-resolver": "^3.2"
},
"require-dev": {
"magento/framework": "~101.0.0"
},
"autoload": {
"psr-4": {"Mimlab\\PrestashopMigrationTool\\": "src/Migration"},
"files" : ["src/Migration/registration.php"]
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}