-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.07 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
{
"name": "aligent/magento2-fredhopper-indexer",
"description": "Index and push data from Magento to Fredhopper",
"require": {
"php": "^8.3.0",
"aligent/magento2-category-selector": "*",
"magento/magento-composer-installer": "*",
"magento/module-advanced-search": "*",
"magento/module-catalog": "*",
"magento/module-catalog-search": "*",
"magento/module-config": "*",
"magento/module-configurable-product": "*",
"magento/module-eav": "*",
"magento/module-elasticsearch": "*",
"magento/module-store": "*",
"ext-zip": "*"
},
"type": "magento2-module",
"license": [
"GPL-3.0-only"
],
"autoload": {
"files": [
"src/common/registration.php",
"src/export/registration.php",
"src/index/registration.php"
],
"psr-4": {
"Aligent\\FredhopperIndexer\\": "src\\index",
"Aligent\\FredhopperExport\\": "src\\export",
"Aligent\\FredhopperCommon\\": "src\\common"
}
}
}