composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "yiisoft/yii2-elasticsearch",
  3. "description": "Elasticsearch integration and ActiveRecord for the Yii framework",
  4. "keywords": ["yii2", "elasticsearch", "active-record", "search", "fulltext"],
  5. "type": "yii2-extension",
  6. "license": "BSD-3-Clause",
  7. "support": {
  8. "issues": "https://github.com/yiisoft/yii2-elasticsearch/issues",
  9. "forum": "http://www.yiiframework.com/forum/",
  10. "wiki": "http://www.yiiframework.com/wiki/",
  11. "irc": "irc://irc.freenode.net/yii",
  12. "source": "https://github.com/yiisoft/yii2-elasticsearch"
  13. },
  14. "authors": [
  15. {
  16. "name": "Carsten Brandt",
  17. "email": "mail@cebe.cc"
  18. }
  19. ],
  20. "require": {
  21. "yiisoft/yii2": "~2.0.14",
  22. "ext-curl": "*",
  23. "ext-json": "*",
  24. "ext-mbstring": "*",
  25. "paragonie/random_compat": ">=1"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "4.8.27|~5.7.21|^6.2"
  29. },
  30. "autoload": {
  31. "psr-4": { "yii\\elasticsearch\\": "" }
  32. },
  33. "repositories": [
  34. {
  35. "type": "composer",
  36. "url": "https://asset-packagist.org"
  37. }
  38. ],
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.1.x-dev"
  42. }
  43. }
  44. }