forked from matchish/laravel-scout-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.47 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.47 KB
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
51
52
53
54
55
56
57
58
{
"name": "matchish/laravel-scout-elasticsearch",
"description": "Search among multiple models with ElasticSearch and Laravel Scout",
"version": "4.0.5",
"keywords": [
"laravel",
"scout",
"extended",
"search",
"elasticsearch"
],
"license": "MIT",
"authors": [
{
"name": "Sergey Shliakhov",
"email": "shlyakhov.up@gmail.com"
}
],
"require": {
"php": "^7.2|^7.3",
"elasticsearch/elasticsearch": ">=7.2",
"laravel/scout": "^8.0",
"ongr/elasticsearch-dsl": "^7.0",
"roave/better-reflection": "^3.3|^4.3"
},
"require-dev": {
"fzaninotto/faker": "^1.8",
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit": "^8.0|~9.4.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"nunomaduro/larastan": "~0.6",
"laravel/legacy-factories": "^1.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"App\\": "tests/laravel/app"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Matchish\\ScoutElasticSearch\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Matchish\\ScoutElasticSearch\\ScoutElasticSearchServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist"
}
}