Added a new criterion for solr with the following features :
Allow per field query boost
Example
$query = new Query();
...
$query->query = new Novactive\EzSolrSearchExtra\Query\Content\Criterion\MultipleFieldsFullText(
'search text',
[
'metaBoost' => [
'title' => '3',
'intro' => '2'
],
'boostPublishDate' => true
]
);