-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
60 lines (60 loc) · 1.74 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
{
"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.7",
"shopware/core": "~6.5.0",
"shopware/storefront": "~6.5.0",
"league/flysystem-sftp-v3": "3.15.0",
"php": "~8.1.0||~8.2.0||~8.3.0",
"ext-json": "*",
"mustache/mustache": "^2.14",
"league/flysystem-ftp": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.22",
"phpmd/phpmd": "^2.9",
"phpspec/phpspec": "^7.2",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Omikron\\FactFinder\\Shopware6\\": "src/"
},
"files": ["src/Internal/utils.php"]
},
"scripts": {
"test": [
"vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 512M",
"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"
]
},
"config": {
"allow-plugins": {
"symfony/*": true,
"omikron/*": true,
"mustache/mustache": true
}
},
"extra": {
"shopware-plugin-class": "Omikron\\FactFinder\\Shopware6\\OmikronFactFinder",
"plugin-icon": "src/Resources/public/plugin.png",
"copyright": "(c) by Omikron Data Quality GmbH",
"label": {
"de-DE": "FACT-Finder® Web Components für Shopware 6",
"en-GB": "FACT-Finder® Web Components for Shopware 6"
}
}
}