-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
58 lines (58 loc) · 1.39 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
{
"name": "omikron/magento2-factfinder",
"description": "FACTFinder Webcomponents SDK",
"type": "magento2-module",
"license": "proprietary",
"authors": [
{
"name": "Omikron Data Quality GmbH",
"homepage": "https://web-components.fact-finder.de"
}
],
"require": {
"php": "^8.1",
"omikron/factfinder-communication-sdk": "^0.9.5",
"magento/framework": "~103.0.4",
"magento/module-catalog": "~104.0.4",
"magento/module-configurable-product": "~100.4.4",
"magento/module-directory": "~100.4.4",
"magento/module-store": "~101.1.4",
"magento/module-inventory": "1.2.*",
"mustache/mustache": "^2.13",
"ext-json": "*"
},
"require-dev": {
"pdepend/pdepend": "^2.8",
"phpmd/phpmd": "^2.9",
"phpunit/phpunit": "~9.5.0",
"magento/magento-coding-standard": "*",
"friendsofphp/php-cs-fixer": "^3.51"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Omikron\\Factfinder\\": "src"
}
},
"config": {
"allow-plugins": {
"magento/*": true,
"omikron/*": true,
"mustache/mustache": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"extra": {
"magento-force": "override"
}
}