Skip to content

Commit 00fa586

Browse files
committed
add scan and scroll queries
0 parents  commit 00fa586

File tree

9 files changed

+1985
-0
lines changed

9 files changed

+1985
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea/
2+
/vendor
3+
composer.lock
4+
.gitattributes
5+
.DS_Store

composer.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "basemkhirat/elasticsearch",
3+
"description": "Elasticsearch query builder",
4+
"keywords": ["elasticsearch", "full text", "builder", "laravel"],
5+
"license": "MIT",
6+
"type": "package",
7+
"authors": [
8+
{
9+
"name": "basemkhirat",
10+
"email": "basemkhirat@gmail.com"
11+
}
12+
],
13+
14+
"autoload": {
15+
"psr-4" : {
16+
"Basemkhirat\\Elasticsearch\\": "src/"
17+
}
18+
},
19+
20+
"require": {
21+
"elasticsearch/elasticsearch": "5.0.0",
22+
"illuminate/pagination": "*",
23+
"illuminate/support": "*"
24+
}
25+
}

0 commit comments

Comments
 (0)