composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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": "^7.1.3",
  16. "symfony/event-dispatcher": "^4.3 || ^5.0",
  17. "ext-json": "*"
  18. },
  19. "require-dev": {
  20. "friendsofphp/php-cs-fixer": "^2.16",
  21. "guzzlehttp/guzzle": "^3.8 || ^6.2",
  22. "php-coveralls/php-coveralls": "^2.1",
  23. "phpunit/phpunit": "^8.0",
  24. "squizlabs/php_codesniffer": "^3.4",
  25. "zendframework/zend-http": "^2.8"
  26. },
  27. "minimum-stability": "dev",
  28. "prefer-stable": true,
  29. "suggest": {
  30. "minimalcode/search": "Query builder compatible with Solarium, allows simplified solr-query handling"
  31. },
  32. "config": {
  33. "sort-packages": true
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Solarium\\": "src/"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "Solarium\\Tests\\": "tests/"
  43. }
  44. }
  45. }