-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
67 lines (67 loc) · 2.19 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
{
"name":"sas/esd",
"description":"ESD / Download plugin",
"type":"shopware-platform-plugin",
"keywords": ["esd", "download"],
"version":"3.0.1",
"license":"proprietary",
"authors":[
{
"name":"Shape & Shift",
"role":"Manufacturer",
"homepage":"https://shapeandshift.dev"
}
],
"require": {
"shopware/core": "~6.6.0",
"shopware/storefront": "~6.6.0",
"shopware/administration": "~6.6.0"
},
"require-dev":{
"phpunit/phpunit": "^10.4",
"phpstan/phpstan": "1.10.60",
"phpcompatibility/php-compatibility": "^9.3",
"squizlabs/php_codesniffer": "^3.6",
"infection/infection": "^0.28.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^v3.21.0",
"symplify/easy-coding-standard": "^12.1.14",
"friendsofphp/php-cs-fixer": "^v3.52.1"
},
"autoload":{
"psr-4":{
"Sas\\Esd\\":"src/"
}
},
"autoload-dev": {
"psr-4": {
"Sas\\Esd\\Tests\\":"tests/PHPUnit/"
}
},
"extra":{
"shopware-plugin-class":"Sas\\Esd\\SasEsd",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "by SMK Shape & Shift LTD",
"label":{
"de-DE":"ESD plugin",
"en-GB":"ESD plugin"
},
"description": {
"en-GB": "The Shopware ESD / Digital Download Plugin gives you the possibility to sell digital downloads in your Shopware 6 store as well as serial numbers, which your customer can download.",
"de-DE": "Das Shopware ESD / Digital Download Plugin gibt dir die Möglichkeit in deinem Shopware 6 Shop digitale Downloads zu verkaufen sowie Seriennummern, welche dein Kunde downloaden kann."
},
"manufacturerLink": {
"en-GB": "https://shapeandshift.dev",
"de-DE": "https://shapeandshift.dev"
},
"supportLink": {
"de-DE": "https://shapeandshift.dev",
"en-GB": "https://shapeandshift.dev"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"infection/extension-installer": true
}
}
}