Skip to content
This repository has been archived by the owner on Nov 4, 2021. It is now read-only.

Commit

Permalink
Increase available version range for elasticsearch dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
babenkoivan committed Jan 19, 2020
1 parent 03a4283 commit c99fc14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
"require": {
"php": "^7.1.3",
"elasticsearch/elasticsearch": "^7.0 !=7.4.0",
"elasticsearch/elasticsearch": ">=7.0 <7.4.0",
"laravel/scout": "^7.0"
},
"require-dev": {
Expand Down
10 changes: 5 additions & 5 deletions tests/Dependencies/IndexConfigurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ public function mockIndexConfigurator(array $params = [])
$name = $params['name'] ?? 'test';

$methods = array_merge($params['methods'] ?? [], [
'getName',
'getSettings',
'getDefaultMapping',
'getWriteAlias',
]);
'getName',
'getSettings',
'getDefaultMapping',
'getWriteAlias',
]);

$mock = $this->getMockBuilder(ElasticIndexConfigurator::class)
->setMethods($methods)->getMock();
Expand Down

0 comments on commit c99fc14

Please sign in to comment.