Releases: cmfcmf/OpenWeatherMap-PHP-API
Releases · cmfcmf/OpenWeatherMap-PHP-API
Forecast Temperatures now contain the day, morning, evening and night temperatures
Hotfix for changed API - replace "metric" by "°C" in temperature units
Merge pull request #36 from cmfcmf/fix-metric-unit Also convert "metric" temperature unit to degrees.
Correct issues with DoctrineAnnotationReader
v2.0.7 Remove unsupported annotations, closes #34.
Corrected phpunit version
Merge pull request #33 from welly/dev Edited phpunit version to use full semantic versioninig
OpenWeatherMap-PHP-API 2.0.5
v2.0.5 Update travis configuration.
OpenWeatherMap-PHP-API 2.0.4
Merge pull request #27 from pablopereira27/master cnt modified
OpenWeatherMap-PHP-API 2.0.3
- corrected timezone of sunset and sunrise.
- added sunset and sunrise to the forecast data.
OpenWeatherMap-PHP-API 2.0.2
Mostly typo and cs fixes.
OpenWeatherMap-PHP-API 2.0.1
This release fixes some minor bugs and mainly improves code style. See the comparison to see what changed.
OpenWeatherMap-PHP-API 2.0.0
- Weather history added, closes #3.
- Autoloader removed, closes #6. It's strongly recommended to install this library via composer now.
- Vendor name changed from
cmfcmf
toCmfcmf
. new OpenWeatherMap()
constructor changed. The first parameter now is an instance of a class implementingCmfcmf/OpenWeatherMap/FetcherInterface
, which is responsible for fetching data from urls. Two fetchers are implemented, the old one usingfile_get_contents($url)
and a new one using cURL. If you do not specify a fetcher, cURL will be used if it's available.- The
copyright
string was removed from all classes and is now only available viaOpenWeatherMap::COPYRIGHT
.
Due to the BC-breaks, this is released as v2.0.0 (following SemVer).