-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
38 lines (38 loc) · 1 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
{
"name": "rakibdevs/openweather-laravel-api",
"description": "Laravel package to connect https://openweathermap.org/ to get customized weather data for any location on the globe immediately",
"keywords": ["laravel","weather","open-weather","api"],
"license": "MIT",
"authors": [
{
"name": "Md. Rakibul Islam",
"email": "[email protected]",
"homepage": "https://rakibul.dev"
}
],
"require": {
"php": "^7.2|^7.3|^7.4|^8.0",
"guzzlehttp/guzzle": "^6.3|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"RakibDevs\\Weather\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RakibDevs\\Weather\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"RakibDevs\\Weather\\WeatherServiceProvider"
]
}
},
"minimum-stability": "stable"
}