forked from MobileXCo/laravel-scout-elastic
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 1.01 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
{
"name": "lotuashvili/laravel-scout-elastic-aws",
"description": "Elastic Driver for Laravel Scout (with AWS IAM capability)",
"keywords": ["laravel", "scout", "elasticsearch", "elastic", "aws"],
"require": {
"php": ">=5.6.4",
"laravel/scout": "^7.1",
"elasticsearch/elasticsearch": "^6.1"
},
"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
}