forked from designmynight/laravel-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.36 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
{
"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": "^8.0",
"ext-json": "*",
"elasticsearch/elasticsearch": "^8.0",
"laravel/framework": "^10.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"mockery/mockery": "^1.1",
"orchestra/testbench": "^v8.0",
"php-http/mock-client": "^1.6"
},
"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"
]
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}