You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
570 B

  1. <?php
  2. return [
  3. 'default' => 'fuzzy',
  4. 'fieldName' => 'relevance',
  5. 'drivers' => [
  6. 'fuzzy' => [
  7. 'class' => 'TomLingham\Searchy\SearchDrivers\FuzzySearchDriver',
  8. ],
  9. 'ufuzzy' => [
  10. 'class' => 'TomLingham\Searchy\SearchDrivers\FuzzySearchUnicodeDriver',
  11. ],
  12. 'simple' => [
  13. 'class' => 'TomLingham\Searchy\SearchDrivers\SimpleSearchDriver',
  14. ],
  15. 'levenshtein' => [
  16. 'class' => 'TomLingham\Searchy\SearchDrivers\LevenshteinSearchDriver',
  17. ],
  18. ],
  19. ];