-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
44 lines (44 loc) · 1.18 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
{
"name": "zepgram/module-disable-search-engine",
"description": "Magento2 module to disable search engine and fulltext indexing for category search",
"type": "magento2-module",
"version": "0.3.1",
"authors": [
{
"name": "Benjamin Calef",
"email": "zepgram@gmail.com"
}
],
"require": {
"php": "^7.4||^8.0",
"magento/framework": "^103.0.6",
"magento/module-backend": "^102.0.6",
"magento/module-indexer": "^100.4.6",
"magento/module-search": "^101.1.6",
"magento/module-catalog-search": "^102.0.6"
},
"replace": {
"magento/module-elasticsearch-catalog-permissions": "*",
"magento/module-elasticsearch-catalog-permissions-graph-ql": "*",
"magento/module-inventory-elasticsearch": "*",
"magento/module-elasticsearch": "*",
"magento/module-elasticsearch-6": "*",
"magento/module-elasticsearch-7": "*",
"magento/module-open-search": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Zepgram\\DisableSearchEngine\\": ""
}
},
"license": "MIT",
"repositories": {
"repo.magento.com": {
"type": "composer",
"url": "https://repo.magento.com/"
}
}
}