-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
38 lines (38 loc) · 1016 Bytes
/
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": "bolden/open-weather",
"description": "Integrate weather information from any location right into your Craft CMS 3 website",
"type": "craft-plugin",
"version": "1.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"weather"
],
"support": {
"docs": "https://github.com/boldenamsterdam/open-weather/blob/master/README.md",
"issues": "https://github.com/boldenamsterdam/open-weather/issues"
},
"license": "MIT",
"authors": [{
"name": "Bolden B.V.",
"homepage": "https://www.bolden.nl"
}],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"bolden\\openweather\\": "src/"
}
},
"extra": {
"name": "OpenWeather",
"handle": "open-weather",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": false,
"class": "bolden\\openweather\\OpenWeather"
}
}