andrey-bahrachev

Results 3 comments of andrey-bahrachev

As a temporary solution I ended up forcing `elasticsearch/elasticsearch` package to the 6.0 version in composer.json like this: `"elasticsearch/elasticsearch": "6.0.1 as 5.3.0"`

@killtw I just went lower level with Elasticsearch\Client itself and problem solved. Still the support for those fields should be added in the upcoming release of this package.

@thitami Do something like this: ``` $client = Plastic::getClient(); $params = [ 'index' => 'your-index-name', 'type' => '_doc', 'body' => [ '_doc' => [ '_source' => [ 'enabled' => true,...