Skip to content

Commit

Permalink
Merge pull request #46 from candasm/4.0
Browse files Browse the repository at this point in the history
Update composer.json to support php7.
  • Loading branch information
candasm committed Mar 5, 2017
2 parents d0bfd91 + 28ee191 commit 9f035a5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Laravel Elasticsearch Service Provider (4.0.1)
Laravel Elasticsearch Service Provider (4.0.2)
================================================
[![Latest Stable Version](https://poser.pugx.org/shift31/laravel-elasticsearch/v/stable)](https://packagist.org/packages/shift31/laravel-elasticsearch)
[![Total Downloads](https://poser.pugx.org/shift31/laravel-elasticsearch/downloads)](https://packagist.org/packages/shift31/laravel-elasticsearch)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}
],
"require": {
"php": ">=5.4.0 <=7.0",
"php": ">=5.4.0",
"laravel/framework": "~4.2.0",
"elasticsearch/elasticsearch": "~0.4"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class ElasticsearchServiceProvider extends ServiceProvider
{
const VERSION = '4.0.1';
const VERSION = '4.0.2';

/**
* @inheritdoc
Expand Down
3 changes: 2 additions & 1 deletion src/config/elasticsearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

return [
'hosts' => ['localhost:9200'],
'logging' => false,
'logPath' => storage_path('logs/elastic-search.log'),
'logLevel' => 400,
'logLevel' => Psr\Log\LogLevel::WARNING,
];

0 comments on commit 9f035a5

Please sign in to comment.