Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Taylor-Jackson committed Jan 3, 2018
1 parent 225261b commit f3f1d48
Show file tree
Hide file tree
Showing 8 changed files with 1,796 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# eloquent-elasticsearch
# laravel-elasticsearch
Use Elasticsearch as a database in Laravel to retrieve Eloquent models and perform aggregations.
31 changes: 31 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "designmynight/laravel-elasticsearch",
"description": "Use Elasticsearch as a database in Laravel to retrieve Eloquent models and perform aggregations.",
"keywords": ["laravel","eloquent","elasticsearch","database","model"],
"homepage": "https://github.com/jenssegers/laravel-mongodb",
"authors": [
{
"name": "DesignMyNight team",
"homepage": "https://designmynight.com"
}
],
"license" : "MIT",
"require": {
"php": "^7.0.0",
"illuminate/support": "^5.5",
"illuminate/database": "^5.5",
"elasticsearch/elasticsearch": "^5.2"
},
"autoload": {
"psr-0": {
"DesignMyNight\\Elasticsearch": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"DesignMyNight\\Elasticsearch\\ElasticsearchServiceProvider"
]
}
}
}
Loading

0 comments on commit f3f1d48

Please sign in to comment.