-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
composer.json
44 lines (44 loc) · 1.39 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "cmfcmf/openweathermap-php-api",
"description": "A PHP API to parse weather data from OpenWeatherMap.org. This wrapper tries to normalise and abstract the data and remove inconsistencies.",
"keywords": ["weather", "OpenWeatherMap", "api", "owm", "free"],
"homepage": "https://github.com/cmfcmf/OpenWeatherMap-PHP-API",
"license": "MIT",
"authors": [
{
"name": "Christian Flach (cmfcmf)",
"email": "[email protected]",
"homepage": "http://cmfcmf.github.io",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/cmfcmf/OpenWeatherMap-PHP-API/issues",
"source": "https://github.com/cmfcmf/OpenWeatherMap-PHP-API.git"
},
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"psr/cache": "^1 || ^2 || ^3",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^8 || ^9",
"cache/array-adapter": "^1.0",
"php-http/guzzle6-adapter": "^2.0 || ^1.0",
"http-interop/http-factory-guzzle": "^1.0"
},
"autoload": {
"psr-4": {
"Cmfcmf\\": "Cmfcmf"
}
},
"autoload-dev": {
"psr-4": {
"Cmfcmf\\OpenWeatherMap\\Tests\\": "tests"
}
}
}