Support for ReRankQuery (#602)
* moved Component\BoostQuery to Component\DisMax\BoostQuery * updated dev dependencies * Every component that has a 'query' option is now able to bind parameters to a query string via its setQuery() function. Renamed option 'q' to 'query' in Solarium\Component\Facet\JsonQuery for consistency. * Added Support for ReRankQuery, code cleanup * fixed coding style * fixed coding style * added integration test and documentation for rerank * use latest solr versions for testing * check for reranking without relying on on the default ranking that might chege between different solr versions.
Showing
... | ... | @@ -18,9 +18,9 @@ |
"require-dev": { | ||
"guzzlehttp/guzzle": "^3.8 || ^6.2", | ||
"phpunit/phpunit": "^6.5", | ||
"satooshi/php-coveralls": "^1.0", | ||
"php-coveralls/php-coveralls": "^1.0", | ||
"squizlabs/php_codesniffer": "^1.4", | ||
"zendframework/zendframework1": "^1.12" | ||
"zendframework/zendframework": "^3.0" | ||
}, | ||
"suggest": { | ||
"minimalcode/search": "Query builder compatible with Solarium, allows simplified solr-query handling" | ||
... | ... |
src/Component/QueryTrait.php
0 → 100644
Please register or sign in to comment