forked from ErickTamayo/laravel-scout-elastic
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 1.06 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
{
"name": "mobilexco/laravel-scout-elastic",
"description": "Elastic Driver for Laravel Scout (with AWS IAM capability)",
"keywords": ["laravel", "scout", "elasticsearch", "elastic", "aws"],
"require": {
"php": ">=5.6.4",
"laravel/scout": "^5.0|^6.0|^7.0|^8.0|^9.0",
"elasticsearch/elasticsearch": "~8.9.0",
"jsq/amazon-es-php": "^0.3"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-4": {
"ScoutEngines\\Elasticsearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ScoutEngines\\Elasticsearch\\Test\\": "tests"
}
},
"suggest": {
"elasticsearch/elasticsearch": "Required to use the Elasticsearch engine (^5.0)."
},
"extra": {
"laravel": {
"providers": [
"ScoutEngines\\Elasticsearch\\ElasticsearchProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}