Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to ErickTamayo/laravel-scout-elastic 5.0.0 #1

Merged
merged 25 commits into from
Jan 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e0681f3
Merge pull request #2 from ErickTamayo/master
ErickTamayo Aug 15, 2016
8babaa5
Merge pull request #4 from ErickTamayo/master
ErickTamayo Aug 23, 2016
5ca6a12
Updating 0.0.1 (#8)
ErickTamayo Aug 25, 2016
e381618
Updating 0.0.1 (#11)
ErickTamayo Aug 26, 2016
836f400
Updating 0.0.1 (#14)
ErickTamayo Sep 1, 2016
127807c
Merge branch 'master' of https://github.com/ErickTamayo/laravel-scout…
ErickTamayo Sep 10, 2016
26b3ecc
Make stable (#18) (#19)
ErickTamayo Sep 20, 2016
32395e5
Merge branch 'master' of https://github.com/ErickTamayo/laravel-scout…
ErickTamayo Sep 22, 2016
26888e4
Merge branch 'master' of https://github.com/ErickTamayo/laravel-scout…
ErickTamayo Sep 29, 2016
6125eaa
Bumped Scout version to v2.0.x
ErickTamayo Feb 1, 2017
4199c44
Bumped Scout version to 3.0
ErickTamayo Feb 1, 2017
4bf38de
Fix config name (#35)
tillkruss Feb 2, 2017
6b4c806
v3.0.2
ErickTamayo Mar 31, 2017
929184d
Update ElasticsearchProvider.php (#54)
xcaptain Apr 24, 2017
4128cbe
chain `values` method in `map` function (#66)
xcaptain Jul 2, 2017
25be726
Support for "WHERE IN" searches if array is passed to `where` (#55)
kronthto Aug 8, 2017
85bc852
Execute the callback that can be passed to the Builder in performSear…
kronthto Aug 21, 2017
52a464a
Update ElasticsearchEngine.php (#51)
prajapatinirav Sep 18, 2017
12c8d2f
Enable Laravel5.5 package Auto-Discovery (#81)
kronthto Sep 27, 2017
97deb01
Removed count function. Fixes #80 (#84)
clsource Oct 24, 2017
a8e5be7
Allow installation with Scout 4 (#99)
kronthto Apr 22, 2018
fb5b843
Compatibility with Scout 5 (#106)
kronthto Oct 15, 2018
c300b9b
Added support for Laravel Scout 6.0 and 7.0, Laravel 5.8 (#119)
semyonchetvertnyh May 14, 2019
c5688dd
Merge tag 'tags/5.0.0' into venice
Nov 13, 2019
4654bf0
Elasticsearch downgrade
Nov 13, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
language: php
php:
- 7.0
- 5.6

before_script:
- sleep 10
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev

script: vendor/phpunit/phpunit/phpunit --verbose
script: vendor/phpunit/phpunit/phpunit --verbose

services:
- elasticsearch

34 changes: 24 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@
"name": "tamayo/laravel-scout-elastic",
"description": "Elastic Driver for Laravel Scout",
"keywords": ["laravel", "scout", "elasticsearch", "elastic"],
"repositories": [
{
"type": "git",
"url": "git@github.com:maguilar92/scout.git"
}
],
"require": {
"php": ">=5.6.4",
"laravel/scout": "^1.0",
"illuminate/support": "^5.3",
"illuminate/database": "^5.3",
"elasticsearch/elasticsearch": "^2.2"
"php": "^7.2",
"laravel/scout": "dev-venice",
"elasticsearch/elasticsearch": "^2.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.0"
},
"fzaninotto/faker": "^1.8",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"ScoutEngines\\Elasticsearch\\": "src/"
Expand All @@ -24,6 +28,16 @@
"ScoutEngines\\Elasticsearch\\Test\\": "tests"
}
},
"minimum-stability": "stable",
"suggest": {
"elasticsearch/elasticsearch": "Required to use the Elasticsearch engine (^5.0)."
},
"extra": {
"laravel": {
"providers": [
"ScoutEngines\\Elasticsearch\\ElasticsearchProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading