-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.9 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
{
"name": "swag/swag-extension-store",
"version": "3.1.0",
"description": "SWAG Extension Store",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "shopware AG",
"homepage": "https://shopware.com"
}
],
"require": {
"shopware/core": "~6.6.9",
"shopware/administration": "~6.6.9"
},
"autoload": {
"psr-4": {
"SwagExtensionStore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SwagExtensionStore\\Tests\\": "tests/"
}
},
"extra": {
"shopware-plugin-class": "SwagExtensionStore\\SwagExtensionStore",
"copyright": "shopware AG",
"label": {
"de-DE": "Shopware Store",
"en-GB": "Shopware Store"
},
"description": {
"de-DE": "Entdecken und kaufen Sie Erweiterungen ganz einfach, direkt in Ihrem eigenen Shopware-Shop. Erhalten Sie Zugang zu vielen Erweiterungen, die Sie in Ihren Shop integrieren können.",
"en-GB": "Explore and buy extensions easily, right from within your own Shopware shop. Get access to loads of helpful Extensions and modern Themes that can be integrated into your shop."
},
"manufacturerLink": {
"de-DE": "https://www.shopware.com/en/",
"en-GB": "https://www.shopware.com/en/"
},
"supportLink": {
"de-DE": "https://www.shopware.com/en/",
"en-GB": "https://www.shopware.com/en/"
}
},
"scripts": {
"cs": [
"@php ../../../vendor/bin/php-cs-fixer fix --dry-run"
],
"cs-fix": [
"@php ../../../vendor/bin/php-cs-fixer fix"
],
"phpstan": [
"@php ../../../src/Core/DevOps/StaticAnalyze/phpstan-bootstrap.php",
"@php ../../../vendor/bin/phpstan analyze"
]
}
}