composer.json 773 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "maxmind/web-service-common",
  3. "description": "Internal MaxMind Web Service API",
  4. "minimum-stability": "stable",
  5. "homepage": "https://github.com/maxmind/web-service-common-php",
  6. "type": "library",
  7. "license": "Apache-2.0",
  8. "authors": [
  9. {
  10. "name": "Gregory Oschwald",
  11. "email": "goschwald@maxmind.com"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=7.2",
  16. "composer/ca-bundle": "^1.0.3",
  17. "ext-curl": "*",
  18. "ext-json": "*"
  19. },
  20. "require-dev": {
  21. "friendsofphp/php-cs-fixer": "3.*",
  22. "phpunit/phpunit": "^8.0 || ^9.0",
  23. "squizlabs/php_codesniffer": "3.*",
  24. "phpstan/phpstan": "*"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "MaxMind\\Exception\\": "src/Exception",
  29. "MaxMind\\WebService\\": "src/WebService"
  30. }
  31. }
  32. }