forked from matchory/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 1.98 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "matchory/elasticsearch",
"description": "Laravel, Lumen and Native php elasticsearch query builder to build complex queries using an elegant syntax",
"keywords": [
"elasticsearch",
"php",
"laravel",
"lumen",
"scout",
"fulltext",
"indexing",
"builder"
],
"license": "MIT",
"type": "package",
"homepage": "https://www.matchory.com",
"support": {
"issues": "https://github.com/matchory/elasticsearch/issues"
},
"authors": [
{
"name": "Basem Khirat",
"homepage": "http://basemkhirat.com",
"email": "[email protected]"
},
{
"name": "Moritz Friedrich",
"homepage": "https://www.moritzfriedrich.com",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Matchory\\Elasticsearch\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Matchory\\Elasticsearch\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"elasticsearch/elasticsearch": "^5.0|^6.0|^7.0",
"illuminate/pagination": "*",
"illuminate/support": "*",
"monolog/monolog": "*",
"symfony/var-dumper": "*"
},
"require-dev": {
"illuminate/contracts": "^8.5",
"illuminate/database": "^8.5",
"laravel/scout": "^8.3",
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "^3.16"
},
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Matchory\\Elasticsearch\\ElasticsearchServiceProvider"
],
"aliases": {
"ES": "Matchory\\Elasticsearch\\Facades\\ES"
}
}
},
"config": {
"sort-packages": true
},
"replace": {
"basemkhirat/elasticsearch": "*"
}
}