forked from pdphilip/laravel-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.07 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
{
"name": "pdphilip/elasticsearch",
"description": "An Elasticsearch implementation of Laravel's Eloquent ORM",
"keywords": [
"laravel",
"eloquent",
"elasticsearch",
"elastic",
"database",
"model"
],
"homepage": "https://github.com/pdphilip/laravel-elasticsearch",
"authors": [
{
"name": "David Philip",
"email": "[email protected]",
"homepage": "https://github.com/pdphilip"
}
],
"license": "MIT",
"require": {
"illuminate/support": "^9.0",
"illuminate/container": "^9.0",
"illuminate/database": "^9.0",
"illuminate/events": "^9.0",
"elasticsearch/elasticsearch": "^7.16",
"ongr/elasticsearch-dsl": "^7.2"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"PDPhilip\\Elasticsearch\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"PDPhilip\\Elasticsearch\\ElasticServiceProvider"
]
}
}
}