forked from codemonauts/craft-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1004 Bytes
/
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
{
"name": "codemonauts/craft-elasticsearch",
"description": "Replace Craft's database full-text search with Elasticsearch.",
"version": "2.0.0",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"Elasticsearch"
],
"license": "proprietary",
"authors": [
{
"name": "codemonauts",
"homepage": "https://codemonauts.com"
}
],
"support": {
"source": "https://github.com/codemonauts/craft-elasticsearch",
"docs": "https://plugins.codemonauts.com/plugins/elasticsearch/Introduction.html",
"issues": "https://github.com/codemonauts/craft-elasticsearch/issues"
},
"require": {
"craftcms/cms": "^4.0.0",
"elasticsearch/elasticsearch": "^7.0",
"jsq/amazon-es-php": "^0.3.0"
},
"autoload": {
"psr-4": {
"codemonauts\\elastic\\": "src/"
}
},
"extra": {
"handle": "elastic",
"class": "codemonauts\\elastic\\Elastic",
"name": "Search powered by Elasticsearch"
}
}