-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
{
"name": "vardump-de/craft-openweather",
"description": "providing openweather data for craft 3",
"type": "craft-plugin",
"version": "1.0.0",
"homepage": "https://github.com/vardump-de/craft-openweather",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"openweather",
"weather",
"craft3"
],
"support": {
"issues": "https://github.com/vardump-de/craft-openweather/issues"
},
"license": "MIT",
"authors": [
{
"name": "rmdev",
"homepage": "https://github.com/rmdev"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC2",
"guzzlehttp/guzzle" : "~6.3.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"vardump\\openweather\\": "src/"
}
},
"extra": {
"name": "openweather",
"handle": "openweather",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "???",
"components": {
"openweatherService": "vardump\\openweather\\services\\OpenweatherService"
},
"class": "vardump\\openweather\\Openweather"
}
}