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.

48 lines
1.2 KiB

10 years ago
8 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"
  15. },
  16. "require-dev": {
  17. "graham-campbell/testbench": "^3.4 || ^4.0 || ^5.0",
  18. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.3 || ^7.0"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "TomLingham\\Searchy\\": "src/"
  23. }
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "TomLingham\\Tests\\Searchy\\": "tests/"
  28. }
  29. },
  30. "config": {
  31. "preferred-install": "dist"
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "3.0-dev"
  36. },
  37. "laravel": {
  38. "providers": [
  39. "TomLingham\\Searchy\\SearchyServiceProvider"
  40. ],
  41. "aliases": {
  42. "Searchy": "TomLingham\\Searchy\\Facades\\Searchy"
  43. }
  44. }
  45. },
  46. "minimum-stability": "dev",
  47. "prefer-stable": true
  48. }