-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
78 lines (78 loc) · 2.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "swag/migration-magento",
"description": "Magento 1 & 2 profiles for Shopware Migration Assistant",
"version": "9.0.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Shopware"
}
],
"require": {
"shopware/core": "~6.6.0",
"swag/migration-assistant": "~14.0"
},
"extra": {
"shopware-plugin-class": "Swag\\MigrationMagento\\SwagMigrationMagento",
"copyright": "(c) by shopware AG",
"label": {
"de-DE": "Magento 1 & 2 Profile für den Migrations-Assistenten",
"en-GB": "Magento 1 & 2 profiles for the Migration Assistant"
},
"description": {
"de-DE": "Dein einfacher Wechsel von Magento zu Shopware. Übertrage mit dem Migrations-Assistenten und dem dazugehörigen Magento Profil-Plugin einfach und schnell Deine Shopdaten.",
"en-GB": "Making the switch from Magento? This plugin works together with the free Migration Assistant to effortlessly transfer numerous datasets from your Magento shop to Shopware 6."
},
"manufacturerLink": {
"de-DE": "https://store.shopware.com/shopware-ag.html",
"en-GB": "https://store.shopware.com/en/shopware-ag.html"
},
"supportLink": {
"de-DE": "https://issues.shopware.com/",
"en-GB": "https://issues.shopware.com/"
}
},
"scripts": {
"lint": [
"@ecs-fix",
"@phpstan",
"@phpunit"
],
"ecs": "../../../vendor/bin/php-cs-fixer fix --dry-run",
"ecs-fix": "../../../vendor/bin/php-cs-fixer fix",
"init:admin": "npm ci --no-audit --prefer-offline --prefix src/Resources/app/administration",
"lint:admin": "npm run lint-fix --prefix src/Resources/app/administration",
"lint:admin:ci": "npm run lint-ci --prefix src/Resources/app/administration",
"phpunit": [
"../../../vendor/bin/phpunit"
],
"phpstan": [
"php bin/phpstan-config-generator.php",
"../../../vendor/bin/phpstan analyze"
],
"phpstan-min-version": [
"php bin/phpstan-config-generator.php --configuration=phpstan-v6-5-0-0.neon.dist",
"../../../vendor/bin/phpstan analyze"
]
},
"autoload": {
"psr-4": {
"Swag\\MigrationMagento\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swag\\MigrationMagento\\Test\\": "tests/",
"SwagMigrationAssistant\\": "../SwagMigrationAssistant"
}
},
"suggest": {
"ext-sodium": "Allows you to use the argon2id13 encoder to migrate customer passwords of Magento 2."
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}