-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
66 lines (66 loc) · 2.03 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
64
65
66
{
"name": "con4gis/maps",
"type": "contao-bundle",
"description": "The interactive maps brick of the Contao GIS-kit con4gis.",
"keywords": ["con4gis", "maps", "openlayers", "osrm", "nominatim", "overpass","map", "gis", "osm", "openstreetmap", "bing", "mapbox", "openmaptiles", "tilehosting", "contao", "c4g", "maps3", "here", "thunderforest", "MapsBundle"],
"homepage": "https://con4gis.org",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Kuestenschmiede GmbH Software & Design",
"homepage": "https://kuestenschmiede.de",
"role": "Operator"
},
{
"name": "con4gis community",
"homepage": "https://con4gis.org",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Kuestenschmiede/MapsBundle/issues",
"source": "https://github.com/Kuestenschmiede/MapsBundle",
"forum": "https://docs.con4gis.org/supportforum?state=forum:95",
"docs": "https://docs.con4gis.org/con4gis-maps"
},
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.3",
"con4gis/core": "^8.0",
"phayes/geophp": "^1.2",
"menatwork/contao-multicolumnwizard-bundle": "^3.6",
"mobiledetect/mobiledetectlib": "^2.8 || ^3.74"
},
"suggest": {
"con4gis/data": "With Data you can maintain your own individual data and display it in maps and lists.",
"con4gis/import": "Useful to import map content."
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"con4gis\\MapsBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"config": {
"preferred-install": "dist"
},
"extra": {
"contao-manager-plugin": "con4gis\\MapsBundle\\ContaoManager\\Plugin",
"branch-alias": {
"dev-main": "10.0.x-dev"
}
}
}