forked from shopware/SwagLanguagePack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.72 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
{
"name": "swag/language-pack",
"description": "Language pack for Shopware 6",
"version": "4.2.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Shopware"
}
],
"require": {
"shopware/core": "~6.6",
"shopware/storefront": "~6.6",
"shopware/administration": "~6.6"
},
"conflict": {
"swag/i18n-bosnian": "*",
"swag/i18n-czech": "*",
"swag/i18n-danish": "*",
"swag/i18n-dutch": "*",
"swag/i18n-french": "*",
"swag/i18n-indonesian": "*",
"swag/i18n-italian": "*",
"swag/i18n-latvian": "*",
"swag/i18n-polish": "*",
"swag/i18n-portuguese": "*",
"swag/i18n-russian": "*",
"swag/i18n-spanish": "*",
"swag/i18n-swedish": "*"
},
"extra": {
"shopware-plugin-class": "Swag\\LanguagePack\\SwagLanguagePack",
"copyright": "(c) by shopware AG",
"label": {
"de-DE": "Sprachpaket",
"en-GB": "Language pack"
},
"description": {
"de-DE": "Das Sprachpaket von Shopware vereint alle Übersetzungen, die von Shopware angeboten werden sowie Länderflaggen für eine Sprachauswahl in der Storefront.",
"en-GB": "The Shopware language pack combines all translations offered by Shopware, as well as associated country flags for a language selection in our storefront."
},
"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/"
}
},
"autoload": {
"psr-4": {
"Swag\\LanguagePack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swag\\LanguagePack\\Test\\": "tests/"
}
},
"suggest": {
"shopware/administration": "Allows you to to set up the extension easily",
"shopware/storefront": "This extension also offers translations for the Shopware Storefront"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"bamarni/composer-bin-plugin": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
},
"scripts": {
"phpstan": [
"php ../../../src/Core/DevOps/StaticAnalyze/phpstan-bootstrap.php",
"../../../vendor/bin/phpstan analyze"
],
"cs-fix": "nix-shell -p php82Packages.php-cs-fixer --run 'php-cs-fixer fix [email protected],no_unused_imports .'"
}
}