-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 902 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 902 Bytes
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
{
"name":"benjaminhansen/nws-php",
"type":"library",
"description":"A wrapper for the National Weather Service REST API (https://api.weather.gov).",
"keywords":["weather", "national weather service", "nws", "api", "restful", "api.weather.gov"],
"license":"MIT",
"homepage":"https://github.com/benjaminhansen/nws-php",
"authors": [
{
"name": "BJ Hansen",
"email": "bjhansen@benjaminhansen.net",
"homepage": "https://benjaminhansen.net"
}
],
"autoload": {
"psr-4": {
"BenjaminHansen\\NWS\\": "src/"
},
"files": [
"src/functions.php"
]
},
"require": {
"php": "^8.3",
"guzzlehttp/guzzle": "^7.8",
"nesbot/carbon": "^3.2",
"phpfastcache/phpfastcache": "^9.2",
"illuminate/collections": "^11.6|^12.0|^13.0",
"laravel/helpers": "^1.8"
},
"require-dev": {
"laravel/pint": "^1.21"
}
}