forked from ErickTamayo/laravel-scout-elastic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 861 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 861 Bytes
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
{
"name": "bethinkpl/elastic-scout",
"description": "Elastic Driver for Laravel Scout",
"keywords": ["laravel", "scout", "elasticsearch", "elastic"],
"require": {
"php": "^8.1|^8.2|^8.3",
"laravel/scout": "^10.16"
},
"require-dev": {
"elasticsearch/elasticsearch": "7.17.*",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^10.0|^11.0"
},
"autoload": {
"psr-4": {
"ScoutEngines\\Elasticsearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ScoutEngines\\Elasticsearch\\Tests\\": "tests"
}
},
"suggest": {
"elasticsearch/elasticsearch": "Required to use the Elasticsearch engine (^7.9.0)."
},
"extra": {
"laravel": {
"providers": [
"ScoutEngines\\Elasticsearch\\LaravelScoutElasticProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}