-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 963 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 963 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
35
36
37
{
"name": "th3mouk/yahoo-weather-api",
"type": "library",
"description": "A PHP weather forecast library based on Yahoo Weather API.",
"keywords": ["yahoo", "weather", "api", "yahoo api", "forecasts"],
"license": "MIT",
"homepage": "https://github.com/Th3Mouk/YahooWeatherAPI",
"authors": [
{
"name": "Jérémy Marodon",
"email": "marodon.jeremy@gmail.com"
}
],
"require": {
"php": "^5.6 || ^7.0",
"guzzlehttp/guzzle": "^6.2.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.5",
"sllh/php-cs-fixer-styleci-bridge": "^2.1"
},
"autoload": {
"psr-4": {
"Th3Mouk\\YahooWeatherAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Th3Mouk\\YahooWeatherAPI\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}