You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-4Lines changed: 18 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -58,23 +58,37 @@ http://home.openweathermap.org/ and put it into `Examples/ApiKey.ini`.
58
58
-`CurrentWeather.php` Shows how to receive the current weather.
59
59
-`WeatherForecast.php` Shows how to receive weather forecasts.
60
60
-`WeatherHistory.php` Shows how to receive weather history.
61
+
-`UVIndex.php` Shows how to receive uv index data.
61
62
-`Cache.php` Shows how to implement and use a cache.
62
63
63
64
Contributing
64
65
============
65
66
I'm happy about every **pull request** or **issue** you find and open to help
66
67
make this API **more awesome**.
67
68
69
+
## Vagrant
70
+
68
71
You can use [Vagrant](https://vagrantup.com) to kick-start your development.
69
72
Simply run `vagrant up` and `vagrant ssh` to start a PHP VM with all
70
73
dependencies included.
71
74
72
-
## Support me
75
+
## Docker
76
+
77
+
You can also use Docker to start developing this library. First install dependencies:
78
+
79
+
docker run --rm --interactive --tty \
80
+
--volume $PWD:/app \
81
+
--user $(id -u):$(id -g) \
82
+
composer install
83
+
84
+
And then execute an example:
85
+
86
+
docker run --rm --interactive --tty \
87
+
--volume $PWD:/app -w /app \
88
+
php bash
73
89
74
-
If you like my work, I'd really appreciate you buying me a coffee.
75
-
Your donations help me put more time into Open-Source software development.
90
+
> php Examples/CurrentWeather.php
76
91
77
-
<ahref='https://ko-fi.com/cmfcmf'target='_blank'><imgheight='36'style='border:0px;height:36px;'src='https://az743702.vo.msecnd.net/cdn/kofi1.png?v=0'border='0'alt='Buy Me a Coffee at ko-fi.com' /></a>
0 commit comments