composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "geocoder-php/common-http",
  3. "type": "library",
  4. "description": "Common files for HTTP based Geocoders",
  5. "keywords": [
  6. "http geocoder"
  7. ],
  8. "homepage": "http://geocoder-php.org",
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Tobias Nyholm",
  13. "email": "tobias.nyholm@gmail.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^7.3 || ^8.0",
  18. "php-http/client-implementation": "^1.0",
  19. "php-http/discovery": "^1.6",
  20. "php-http/httplug": "^1.0 || ^2.0",
  21. "php-http/message-factory": "^1.0.2",
  22. "psr/http-message": "^1.0",
  23. "psr/http-message-implementation": "^1.0",
  24. "willdurand/geocoder": "^4.0"
  25. },
  26. "require-dev": {
  27. "nyholm/psr7": "^1.0",
  28. "php-http/message": "^1.0",
  29. "php-http/mock-client": "^1.0",
  30. "phpunit/phpunit": "^9.5",
  31. "symfony/stopwatch": "~2.5"
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "4.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Geocoder\\Http\\": ""
  41. },
  42. "exclude-from-classmap": [
  43. "/Tests/"
  44. ]
  45. },
  46. "minimum-stability": "dev",
  47. "prefer-stable": true,
  48. "scripts": {
  49. "test": "vendor/bin/phpunit",
  50. "test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
  51. }
  52. }