composer.json 579 B

123456789101112131415161718192021222324252627
  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. },
  16. "autoload": {
  17. "psr-4": {
  18. "Elastica\\": "lib/Elastica",
  19. "Elasticsearch\\": "lib/Elasticsearch"
  20. }
  21. },
  22. "extra": {
  23. "branch-alias": {
  24. "dev-master": "master"
  25. }
  26. }
  27. }