forked from FACT-Finder-Web-Components/shopware6-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.45 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.45 KB
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
{
"name": "omikron/shopware6-factfinder",
"description": "FACT-Finder® Web Components for Shopware 6",
"type": "shopware-platform-plugin",
"license": "proprietary",
"authors": [
{
"name": "Omikron Data Quality GmbH",
"homepage": "https://web-components.fact-finder.de"
}
],
"require": {
"omikron/factfinder-communication-sdk": "^0.9.5",
"shopware/core": "^6.4",
"shopware/storefront": "^6.4",
"league/flysystem-sftp": "1.0.22",
"php": "^7.4 || ^8.0",
"ext-json": "*",
"mustache/mustache": "^2.14"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.1",
"phpmd/phpmd": "^2.9",
"phpspec/phpspec": "^6.2",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Omikron\\FactFinder\\Shopware6\\": "src/"
},
"files": ["src/Internal/utils.php"]
},
"scripts": {
"test": [
"php-cs-fixer fix --dry-run -v",
"phpspec run --format=dot",
"phpmd src text phpmd.xml.dist",
"php phpcpd.phar src --exclude src/Command --exclude src/Export/ExportCategories.php --exclude src/Export/ExportCmsPages.php\n"
]
},
"extra": {
"shopware-plugin-class": "Omikron\\FactFinder\\Shopware6\\OmikronFactFinder",
"plugin-icon": "src/Resources/public/plugin.png",
"copyright": "(c) by Omikron Data Quality GmbH",
"label": {
"en-GB": "FACT-Finder® Web Components for Shopware 6",
"de-DE": "FACT-Finder® Web Components für Shopware 6"
}
}
}