forked from ErickTamayo/laravel-scout-elastic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.04 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": "sl0wik/laravel-scout-elasticsearch-driver",
"description": "Elasticsearch Driver for Laravel Scout with multi-index support.",
"keywords": ["laravel", "scout", "elasticsearch", "elastic"],
"license": "MIT",
"require": {
"php": ">=5.6.4",
"laravel/scout": "^3.0|^4.0",
"elasticsearch/elasticsearch": "^5.0"
},
"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
}