-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 954 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 954 Bytes
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
{
"name": "digitalutsc/leafletjs",
"type": "drupal-module",
"description": "Interactive Leaflet map with marker clustering. Displays a leaflet map using a preprocessed CSV file with location data to prevent long query times for large data sets.",
"keywords": [
"Drupal",
"leaflet",
"map",
"clustering",
"markers",
"geolocation"
],
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/digitalutsc/leafletjs",
"support": {
"issues": "https://github.com/digitalutsc/leafletjs/issues",
"source": "https://github.com/digitalutsc/leafletjs"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"drupal/core": "^9 || ^10 || ^11",
"drupal/views_data_export": "^1.8",
"drupal/views_geojson": "^1.4",
"drupal/geolocation": "^3.14"
},
"autoload": {
"psr-4": {
"Drupal\\leafletjs\\": "src/"
}
}
}