composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "maxmind-db/reader",
  3. "description": "MaxMind DB Reader API",
  4. "keywords": ["database", "geoip", "geoip2", "geolocation", "maxmind"],
  5. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  6. "type": "library",
  7. "license": "Apache-2.0",
  8. "authors": [
  9. {
  10. "name": "Gregory J. Oschwald",
  11. "email": "goschwald@maxmind.com",
  12. "homepage": "https://www.maxmind.com/"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=7.2"
  17. },
  18. "suggest": {
  19. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  20. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  21. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  22. },
  23. "conflict": {
  24. "ext-maxminddb": "<1.11.1,>=2.0.0"
  25. },
  26. "require-dev": {
  27. "friendsofphp/php-cs-fixer": "3.*",
  28. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  29. "php-coveralls/php-coveralls": "^2.1",
  30. "phpunit/phpcov": ">=6.0.0",
  31. "squizlabs/php_codesniffer": "3.*",
  32. "phpstan/phpstan": "*"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "MaxMind\\Db\\": "src/MaxMind/Db"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "MaxMind\\Db\\Test\\Reader\\": "tests/MaxMind/Db/Test/Reader"
  42. }
  43. }
  44. }