forked from cnajjar/contao-weather-get
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 2.39 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
54
55
56
57
58
59
60
61
62
63
{
"name":"pdir/contao-weather-get",
"description":"Contao extension for displaying weather using yahoo / openweathermap / forecast.io ",
"keywords":["contao", "composer","weather","wetter","yahoo weather","openweathermap","forecast.io"],
"type":"contao-bundle",
"license":"MIT",
"authors":[
{
"name":"Christian Najjar",
"email":"[email protected]",
"homepage":"http://contao.christian-najjar.de",
"role":"Developer"
},
{
"name": "pdir GmbH",
"homepage": "https://github.com/pdir",
"role":"Developer"
},
{
"name":"Mathias Arzberger",
"homepage":"https://pdir.de/",
"role":"Developer"
}
],
"require":{
"php":"^8.1",
"contao/core-bundle":"^4.13 || ^5.3"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Pdir\\ContaoWeatherGetBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"contao-manager-plugin": "Pdir\\ContaoWeatherGetBundle\\ContaoManager\\Plugin"
},
"funding": [
{
"type": "corporate",
"url": "https://contao-themes.net/sponsoring.html"
}
],
"suggest": {
"pdir/social-feed-bundle": "The Social Feed Extension shows a user feed from the most popular social networks. / Die Social Feed Erweiterung zeigt einen Feed aus den beliebtesten sozialen\nNetzwerken an.",
"contao-themes-net/mate-theme-bundle": "MATE Theme includes all styles for social feed bundle. / MATE Theme enthält Stylesheets für das Social Feed Bundle.",
"contao-themes-net/odd-theme-bundle": "ODD Theme includes all styles for social feed bundle. / ODD Theme enthält Stylesheets für das Social Feed Bundle.",
"contao-themes-net/nature-theme-bundle": "NATURE Theme includes all styles for social feed bundle. / NATURE Theme enthält Stylesheets für das Social Feed Bundle.",
"contao-themes-net/zero-one-theme-bundle": "Show a social feed in the 0.1 Theme. / Zeige einen Social Feed im 0.1 Theme an."
}
}