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.

36 lines
955 B

10 years ago
10 years ago
  1. {
  2. "name": "tom-lingham/searchy",
  3. "description": "Laravel Searchy makes user driven searching easy with fuzzy search, basic string matching, Levenshtein Distance and more.",
  4. "keywords": ["laravel","search","fuzzy"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Tom Lingham",
  9. "email": "tjlingham@gmail.com"
  10. }
  11. ],
  12. "require": {
  13. "php": "^5.5.9 || ^7.0",
  14. "illuminate/support": "5.1.* || 5.2.*"
  15. },
  16. "require-dev" :{
  17. "graham-campbell/testbench": "^3.1",
  18. "mockery/mockery": "^0.9.4",
  19. "phpunit/phpunit": "^4.8 || ^5.0"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "TomLingham\\Searchy\\": "src/"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "TomLingham\\Tests\\Searchy\\": "tests/"
  29. }
  30. },
  31. "config": {
  32. "preferred-install": "dist"
  33. },
  34. "minimum-stability": "dev",
  35. "prefer-stable": true
  36. }