composer.json 603 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "moose/elastic-php-adapter",
  3. "type": "library",
  4. "description": "Adapter to provide elasticsearch interface",
  5. "keywords": ["elasticsearch", "search"],
  6. "license": "MIT",
  7. "authors": [
  8. { "name": "Paolo Libertini", "email": "paolo.libertini@mooses.it" }
  9. ],
  10. "require": {
  11. "php": "^7.1",
  12. "ext-hash": "*",
  13. "ext-curl": "*",
  14. "ext-json": "*",
  15. "psr/log": "1.1.*"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "Elastica\\": "lib/Elastica",
  20. "Elasticsearch\\": "lib/Elasticsearch"
  21. }
  22. },
  23. "extra": {
  24. "branch-alias": {
  25. "dev-master": "master"
  26. }
  27. }
  28. }