composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "solarium/solarium",
  3. "type": "library",
  4. "description": "PHP Solr client",
  5. "keywords": ["solr", "search", "php"],
  6. "homepage": "http://www.solarium-project.org",
  7. "license": "BSD-3-Clause",
  8. "authors": [
  9. {
  10. "name": "See GitHub contributors",
  11. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.9",
  16. "symfony/event-dispatcher": "^2.7 || ^3.0 || ^4.0"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "^3.7",
  20. "squizlabs/php_codesniffer": "^1.4",
  21. "zendframework/zendframework1": "^1.12",
  22. "satooshi/php-coveralls": "^1.0",
  23. "guzzlehttp/guzzle": "^3.8 || ^6.2"
  24. },
  25. "suggest": {
  26. "minimalcode/search": "Query builder compatible with Solarium, allows simplified solr-query handling"
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-develop": "3.3-dev"
  31. }
  32. },
  33. "autoload": {
  34. "psr-0": { "Solarium\\": "library/" }
  35. }
  36. }