forked from benmanu/silverstripe-leafletfield
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 960 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
{
"name": "nzta/googlemap-leafletfield",
"description": "Provides a form field type allowing users to draw features on a map, the features are stored as geoJSON objects in a single database field",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/nzta/googlemap-leafletfield",
"keywords": [
"silverstripe",
"leaflet",
"map"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/nzta/googlemap-leafletfield/issues"
},
"authors": [
{
"name": "Robby",
"email": "[email protected]"
}
],
"require": {
"silverstripe/vendor-plugin": "^1.0",
"silverstripe/cms": "^4.0"
},
"autoload": {
"psr-4": {
"NZTA\\LeafletField\\": "src/"
}
},
"extra": {
"installer-name": "leafletfield",
"expose": [
"client"
]
}
}