-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
94 lines (94 loc) · 3.15 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "swag/migration-assistant",
"description": "Migration plugin for shopware/platform",
"version": "13.2.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Shopware"
}
],
"require": {
"shopware/core": "~6.6.1"
},
"extra": {
"shopware-plugin-class": "SwagMigrationAssistant\\SwagMigrationAssistant",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by shopware AG",
"label": {
"de-DE": "Migrations-Assistent",
"en-GB": "Migration Assistant"
},
"description": {
"de-DE": "Der Migrations-Assistent stellt eine Verbindung von einer Datenquelle (z.B Shopware 5) zu Shopware 6 her und begleitet Dich Schritt für Schritt beim Migrationsprozess.",
"en-GB": "The Migration Assistant establishes a connection between a data source (e.g. Shopware 5) and Shopware 6 and guides you step by step through the migration process."
},
"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",
"@admin:lint"
],
"ecs": "../../../vendor/bin/php-cs-fixer fix --dry-run",
"ecs-fix": "../../../vendor/bin/php-cs-fixer fix",
"phpunit": "../../../vendor/bin/phpunit",
"phpstan": [
"php ../../../src/Core/DevOps/StaticAnalyze/phpstan-bootstrap.php",
"php bin/phpstan-config-generator.php",
"../../../vendor/bin/phpstan analyze"
],
"install5db": "./bin/install-5-test-data.sh",
"setup": [
"@composer install -o",
"@composer install5db",
"@php ../../../bin/console p:i -a -c SwagMigrationAssistant"
],
"admin:install": [
"@npm:admin install",
"@npm:jest install",
"@npm:acceptance install"
],
"admin:lint": [
"@npm:jest run lint",
"@npm:admin run lint",
"@npm:acceptance run lint"
],
"admin:lint:fix": [
"@npm:jest run lint-fix",
"@npm:admin run lint-fix",
"@npm:acceptance run lint-fix"
],
"admin:unit": "@npm:jest run unit",
"admin:unit:watch": "@npm:jest run unit-watch",
"admin:acceptance": "@npm:acceptance run test",
"npm:admin": "cd src/Resources/app/administration && npm",
"npm:jest": "cd tests/Jest && npm",
"npm:acceptance": "cd tests/acceptance && npm"
},
"autoload": {
"psr-4": {
"SwagMigrationAssistant\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SwagMigrationAssistant\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}