-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.09 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
{
"name": "factfinder/magento2-exportmodule",
"description": "FACTFinder export SDK",
"type": "magento2-module",
"version": "1.0.0",
"license": "proprietary",
"authors": [
{
"name": "FACTFinder",
"homepage": "https://www.fact-finder.de"
}
],
"require": {
"php": "~8.1.0||~8.2.0",
"omikron/factfinder-communication-sdk": "^0.9.5",
"magento/framework": "~103.0.4",
"magento/module-store": "~101.1.6",
"magento/module-configurable-product": "~100.4.6",
"phpseclib/phpseclib": "~3.0"
},
"autoload": {
"files": [ "src/registration.php" ],
"psr-4": {
"Factfinder\\Export\\": "src/"
}
},
"config": {
"allow-plugins": {
"magento/*": true,
"omikron/*": true
}
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"phpmd/phpmd" : "^2.13",
"magento/magento-coding-standard": "^31.0"
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/,../../phpcompatibility/php-compatibility)"
]
}
}