-
Notifications
You must be signed in to change notification settings - Fork 130
/
composer.json
61 lines (61 loc) · 1.58 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
{
"name": "basemkhirat/elasticsearch",
"description": "Laravel, Lumen and Native php elasticseach query builder to build complex queries using an elegant syntax",
"keywords": [
"elasticsearch",
"php",
"laravel",
"lumen",
"scout",
"fulltext",
"indexing",
"builder"
],
"license": "MIT",
"type": "package",
"homepage": "http://basemkhirat.com",
"support": {
"issues": "https://github.com/basemkhirat/elasticsearch/issues",
"source": "http://basemkhirat.com/indexing/2016/01/07/laravel-elasticseach-query-builder.html"
},
"authors": [
{
"name": "basemkhirat",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Basemkhirat\\Elasticsearch\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Basemkhirat\\Elasticsearch\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6.6",
"elasticsearch/elasticsearch": "^5.0|^6.0",
"illuminate/pagination": "*",
"illuminate/support": "*",
"symfony/var-dumper": "*",
"monolog/monolog": "*"
},
"require-dev": {
"phpunit/phpunit": "5.7.0"
},
"extra": {
"laravel": {
"providers": [
"Basemkhirat\\Elasticsearch\\ElasticsearchServiceProvider"
],
"aliases": {
"ES": "Basemkhirat\\Elasticsearch\\Facades\\ES"
}
}
}
}