-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.18 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
{
"name": "mobilistics-gmbh/shopware-6-connector",
"description": "Shopware 6 Connector",
"type": "shopware-platform-plugin",
"version": "3.0.0",
"license": "proprietary",
"autoload": {
"psr-4": {
"MobilisticsGmbH\\MamoConnector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MobilisticsGmbH\\MamoConnector\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "mobilistics GmbH"
}
],
"extra": {
"shopware-plugin-class": "MobilisticsGmbH\\MamoConnector\\MobiMamoConnector",
"copyright": "(c) by mobilistics GmbH",
"label": {
"de-DE": "Shopware 6 Connector",
"en-GB": "Shopware 6 Connector"
}
},
"require": {
"shopware/core": "~6.6.0",
"shopware/storefront": "~6.6.0",
"promphp/prometheus_client_php": "^2.7"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.17.2",
"phpunit/phpunit": "~10.5",
"symplify/easy-coding-standard": "^11.5"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}