forked from kabudu/forecast-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.11 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
{
"name": "kabudu/forecast-tools",
"description": "Wrapper for Forecast.io API that supports many simultaneous API calls, substantially reducing wait time for any applications needing to look up weather conditions en masse.",
"authors": [
{
"name": "Charlie Gorichanaz",
"email": "charlie@gorichanaz.com"
},
{
"name": "Shannon Little",
"email": "slittle@drakecooper.com"
},
{
"name": "Kamba Abudu",
"email": "kabudu@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"phpunit/phpunit": "4.8.*@dev",
"predis/predis": "v1.0.1"
},
"suggest": {
"predis/predis": "Flexible and feature-complete PHP client library for Redis to use the Redis cache handler",
"redis": ">= 2.8 to use the redis cache handler"
},
"autoload": {
"psr-4": {
"ForecastTools\\": "lib/",
"ForecastTools\\Cache\\": "lib/",
"ForecastTools\\Model\\": "lib/",
"ForecastTools\\Exception\\": "lib/",
"ForecastTools\\Test\\": "tests/",
"Predis\\": "vendor/predis/predis/src/"
}
}
}