composer.json 387 B

12345678910111213141516171819202122
  1. {
  2. "name": "cebe/js-search",
  3. "description": "A client side search engine for use on static pages.",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Carsten Brandt",
  8. "email": "mail@cebe.cc"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=5.4.0"
  13. },
  14. "autoload": {
  15. "psr-4": {
  16. "cebe\\jssearch\\": "lib/"
  17. }
  18. },
  19. "bin": [
  20. "bin/jsindex"
  21. ]
  22. }