-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
46 lines (46 loc) · 1.47 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
{
"name" : "elastic/app-search-magento",
"description" : "Elastic App Search official integration for Magento 2",
"homepage": "https://github.com/elastic/app-search-magento",
"keywords" : [
"search",
"client",
"elastic",
"magento",
"magento2"
],
"license": "OSL-3.0",
"type": "magento2-module",
"authors" : [
{"name" : "Aurélien FOUCRET", "email": "aurelien.foucret@elastic.co"}
],
"require" : {
"php" : "^7.1",
"elastic/app-search" : "^1.0.0",
"magento/framework": ">=101.0.0",
"magento/module-catalog": ">=102.0.6"
},
"require-dev" : {
"squizlabs/php_codesniffer": "@stable",
"phpmd/phpmd": "@stable",
"overtrue/phplint": "@stable"
},
"autoload" : {
"psr-4" : {
"Elastic\\AppSearch\\Framework\\Search\\" : "src/framework-search",
"Elastic\\AppSearch\\Framework\\AppSearch\\" : "src/framework-app-search",
"Elastic\\AppSearch\\Search\\" : "src/module-search",
"Elastic\\AppSearch\\CatalogSearch\\" : "src/module-catalog-search",
"Elastic\\AppSearch\\CatalogGraphQl\\" : "src/module-catalog-graph-ql",
"Elastic\\AppSearch\\Synonyms\\" : "src/module-synonyms"
},
"files": [
"src/framework-search/registration.php",
"src/framework-app-search/registration.php",
"src/module-search/registration.php",
"src/module-catalog-search/registration.php",
"src/module-catalog-graph-ql/registration.php",
"src/module-synonyms/registration.php"
]
}
}