composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "willdurand/geocoder",
  3. "type": "library",
  4. "description": "Common files for PHP Geocoder",
  5. "keywords": [
  6. "geocoder",
  7. "geocoding",
  8. "abstraction",
  9. "geoip"
  10. ],
  11. "homepage": "http://geocoder-php.org",
  12. "license": "MIT",
  13. "authors": [
  14. {
  15. "name": "William Durand",
  16. "email": "william.durand1@gmail.com"
  17. }
  18. ],
  19. "require": {
  20. "php": "^7.3 || ^8.0"
  21. },
  22. "require-dev": {
  23. "nyholm/nsa": "^1.1",
  24. "phpunit/phpunit": "^9.5",
  25. "symfony/stopwatch": "~2.5"
  26. },
  27. "suggest": {
  28. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  29. },
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "4.1-dev"
  33. }
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Geocoder\\": ""
  38. },
  39. "exclude-from-classmap": [
  40. "/Tests/"
  41. ]
  42. },
  43. "scripts": {
  44. "test": "vendor/bin/phpunit",
  45. "test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
  46. }
  47. }