forked from designmynight/laravel-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.2 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": "designmynight/laravel-elasticsearch",
"description": "Use Elasticsearch as a database in Laravel to retrieve Eloquent models and perform aggregations.",
"keywords": ["laravel","eloquent","elasticsearch","database","model"],
"homepage": "https://github.com/designmynight/laravel-elasticsearch",
"authors": [
{
"name": "DesignMyNight team",
"homepage": "https://designmynight.com"
}
],
"license" : "MIT",
"require": {
"php": "^7.1 || ^8.0",
"ext-json": "*",
"elasticsearch/elasticsearch": "^7.0",
"laravel/framework": "^5.8 || ^6.0 || >=7.0"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"mockery/mockery": "^1.1"
},
"autoload": {
"psr-4": {
"DesignMyNight\\Elasticsearch\\": "src/"
}
},
"autoload-dev": {
"files": [
"vendor/laravel/framework/src/Illuminate/Foundation/helpers.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"DesignMyNight\\Elasticsearch\\ElasticsearchServiceProvider"
]
}
}
}