forked from Smile-SA/elasticsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name" : "smile-sa/elasticsuite",
"type" : "magento2-component",
"license" : "OSL-3.0",
"authors" : [{
"name" : "Aurélien FOUCRET",
"email" : "[email protected]"
}
],
"description" : "Smile ElasticSuite - Magento2 Merchandising built on ElasticSearch",
"homepage" : "https://github.com/Smile-SA/elasticsuite",
"keywords" : [
"magento",
"magento2",
"elasticsearch",
"search",
"merchandising",
"core",
"setup"
],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require" : {
"magento/framework" : "*",
"magento/module-store" : "*",
"magento/module-backend" : "*",
"magento/module-catalog" : "*",
"magento/module-catalog-search" : "*",
"magento/magento-composer-installer" : "*",
"elasticsearch/elasticsearch" : "2.1.*"
},
"replace": {
"smile-sa/module-elasticsuite-core": "self.version",
"smile-sa/module-elasticsuite-catalog": "self.version",
"smile-sa/module-elasticsuite-swatches": "self.version",
"smile-sa/module-elasticsuite-thesaurus": "self.version",
"smile-sa/module-elasticsuite-tracker": "self.version",
"smile-sa/module-elasticsuite-catalog-autocomplete": "self.version"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpmd/phpmd": "*",
"pdepend/pdepend": "*",
"sjparkinson/static-review": "*",
"fabpot/php-cs-fixer": "*",
"lusitanian/oauth": "*",
"squizlabs/php_codesniffer": "*"
},
"autoload" : {
"files" : [
"src/module-elasticsuite-core/registration.php",
"src/module-elasticsuite-catalog/registration.php",
"src/module-elasticsuite-swatches/registration.php",
"src/module-elasticsuite-thesaurus/registration.php",
"src/module-elasticsuite-tracker/registration.php",
"src/module-elasticsuite-catalog-autocomplete/registration.php"
],
"psr-4" : {
"Smile\\ElasticSuiteCore\\" : "src/module-elasticsuite-core",
"Smile\\ElasticSuiteCatalog\\" : "src/module-elasticsuite-catalog",
"Smile\\ElasticSuiteSwatches\\" : "src/module-elasticsuite-swatches",
"Smile\\ElasticSuiteThesaurus\\" : "src/module-elasticsuite-thesaurus",
"Smile\\ElasticSuiteTracker\\" : "src/module-elasticsuite-tracker",
"Smile\\ElasticSuiteCatalogAutocomplete\\" : "src/module-elasticsuite-catalog-autocomplete"
}
},
"extra": {
"map": [
[
"lib/web/fonts/elasticsuite",
"lib/web/fonts/elasticsuite"
]
]
}
}