composer.json 489 B

123456789101112131415161718192021
  1. {
  2. "name": "mooses/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-elasticsearch": "*"
  14. },
  15. "autoload": {
  16. "psr-0": {
  17. "Elastica": "lib/Elastica",
  18. "Elasticsearch": "lib/Elasticsearch"
  19. }
  20. }
  21. }