Download the PHP package medeirosdev/weather-here-developer without Composer
On this page you can find all versions of the php package medeirosdev/weather-here-developer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download medeirosdev/weather-here-developer
More information about medeirosdev/weather-here-developer
Files in medeirosdev/weather-here-developer
Package weather-here-developer
Short Description Weather and Climate for Developer Here
License MIT
Informations about the package weather-here-developer
PHP Weather Here Developer API
This is a simple package that allows access to the Here Developer Weather API using a (mostly) fluent API.
Information
Package create for Here Developer Weather
Documentation - https://developer.here.com/documentation/weather/topics/overview.html
Installation
Install the package using composer:
Frameworks
At the moment we only have framework compatibility for Laravel. However, we welcome PRs to add further framework specific behavior as long as it doesn't prevent the package working for others
Laravel
If you are using Laravel then you can use our service provider. If you have Laravel >5.5 then the package
will be auto discovered upon install. Else, add the following to your config/app.php
file:
Facades
If you are using Laravel >5.5 then the facade will
be automatically discovered. Else, you can add it in your config/app.php
file.
Configuration
First, make sure you have copied the configuration file:
This will make a config/here_developer.php
file, this is where your API Key / License information is fetched from.
By default we use the .env
configuration values to get your API key.
Use the App ID and App Code then you should add
the following to your .env
:
Please, make sure you don't store your keys in version control!
Usage
License / API Key
Before making requests you need to create your License object. You will need is your API key, then you can create your license as follows:
Then, you can start making your request:
Basic usage
Basic usage in Laravel
No need to enter license object
Supported Products
- Product::
OBSERVATION
- Product::
FORECAST_7DAYS
- Product::
FORECAST_7DAYS_SIMPLE
- Product::
FORECAST_HOURLY
- Product::
FORECAST_ASTRONOMY
- Product::
ALERTS
- Product::
NWS_ALERTS
SUPPORTED UNITS
- Unit::
METRIC
- Unit::
IMPERIAL
Supported Locations
- Location::
byLatitudeLongitude($latitude, $longitude)
- Location::
byName($cityOrOtherName)
- Location::
byZipcode($zipcode)