composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "cmfcmf/openweathermap-php-api",
  3. "description": "A php api to parse weather data from OpenWeatherMap.org. This api tries to normalise and abstract the data and remove inconsistencies.",
  4. "keywords": ["weather", "OpenWeatherMap", "api", "owm", "free"],
  5. "homepage": "https://github.com/cmfcmf/OpenWeatherMap-PHP-Api",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Christian Flach (cmfcmf)",
  10. "email": "cmfcmf.flach@gmail.com",
  11. "homepage": "http://cmfcmf.github.io",
  12. "role": "Developer"
  13. }
  14. ],
  15. "support": {
  16. "issues": "https://github.com/cmfcmf/OpenWeatherMap-PHP-Api/issues",
  17. "source": "https://github.com/cmfcmf/OpenWeatherMap-PHP-Api.git"
  18. },
  19. "require": {
  20. "php": ">=5.3.0",
  21. "ext-json": "*",
  22. "ext-libxml": "*",
  23. "ext-simplexml": "*"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "^4.8 || ^5.0.5"
  27. },
  28. "suggest": {
  29. "ext-curl": "Enables CURL usage for API requests."
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Cmfcmf\\": "Cmfcmf"
  34. }
  35. }
  36. }