-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 1.24 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
{
"name": "la-haute-societe/craft-elasticsearch",
"description": "Bring the power of Elasticsearch to your Craft CMS projects.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"elasticsearch"
],
"support": {
"docs": "https://github.com/la-haute-societe/craft-elasticsearch",
"issues": "https://github.com/la-haute-societe/craft-elasticsearch/issues?state=open",
"email": "[email protected]",
"source": "https://github.com/la-haute-societe/craft-elasticsearch"
},
"license": "proprietary",
"authors": [
{
"name": "La Haute Société",
"homepage": "https://www.lahautesociete.com"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"yiisoft/yii2-elasticsearch": "^2.1.0"
},
"autoload": {
"psr-4": {
"lhs\\elasticsearch\\": "src/"
}
},
"extra": {
"name": "Elasticsearch",
"handle": "elasticsearch",
"schemaVersion": "1.3.0",
"changelogUrl": "https://raw.githubusercontent.com/la-haute-societe/craft-elasticsearch/master/CHANGELOG.md",
"class": "lhs\\elasticsearch\\Elasticsearch"
}
}