PHP Library for the Pirate Weather API.
This is a fork of the dmitry-ivanov/dark-sky-api package.
-
Install the package via Composer:
composer require matthewhallcom/pirate-weather-php
-
Use the
MatthewHallCom\PirateWeather\PirateWeather
class:use MatthewHallCom\PirateWeather\PirateWeather; $forecast = (new PirateWeather('secret-key')) ->location(46.482, 30.723) ->forecast('daily'); echo $forecast->daily()->summary();
Sometimes it might be useful to get weather for the specified date:
$timeMachine = (new PirateWeather('secret-key'))
->location(46.482, 30.723)
->timeMachine('2020-01-01', 'daily');
echo $timeMachine->daily()->summary();
You can also get weather for multiple dates:
$timeMachine = (new PirateWeather('secret-key'))
->location(46.482, 30.723)
->timeMachine(['2020-01-01', '2020-01-02', '2020-01-03'], 'daily');
echo $timeMachine['2020-01-02']->daily()->summary();
If you're using Laravel <5.5, you have to register service provider and alias by yourself!
-
Publish the config:
php artisan vendor:publish --provider="MatthewHallCom\PirateWeather\Adapters\Laravel\PirateWeatherServiceProvider"
-
Set your secret key in the
.env
file:PIRATE_WEATHER_KEY="Your-Secret-Key"
-
Use the
PirateWeather
facade:use PirateWeather; $forecast = PirateWeather::location(46.482, 30.723) ->forecast('daily'); echo $forecast->daily()->summary();
Pirate Weather PHP is open-sourced software licensed under the MIT license.