-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.04 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": "lfischer/wunderground-api",
"type": "library",
"description": "A simple PHP library for querying the Weather Underground API.",
"keywords": ["API", "weather"],
"homepage": "https://github.com/leonardfischer/wunderground-api",
"license": "MIT",
"authors": [
{
"name": "Leonard Fischer",
"email": "post@leonard.fischer.de",
"homepage": "http://leonardfischer.de",
"role": "Developer"
},
{
"name": "Stefano Borghi",
"homepage": "https://github.com/stebogit",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/leonardfischer/wunderground-api/issues",
"source": "https://github.com/leonardfischer/wunderground-api"
},
"require": {
"php": ">=5.4.0",
"ext-json": "*"
},
"require-dev": {
"php": ">=7.3",
"phpunit/phpunit": "^9.4",
"psalm/phar": "^4.1"
},
"autoload": {
"psr-4": {
"lfischer\\wunderground\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"lfischer\\wunderground\\tests\\": "tests/"
}
}
}