-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.78 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 1.78 KB
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": "daniel-km/omeka-s-module-data-type-geometry",
"type": "omeka-s-module",
"description": "Module for Omeka S: Adds data types to store latitude, longitude, markers and area highlights of images and maps with wkt.",
"keywords": [
"Omeka S",
"Omeka S module",
"geographic coordinates",
"geometry",
"geography",
"annotation",
"cartography"
],
"license": "CECILL-2.1",
"homepage": "https://gitlab.com/Daniel-KM/Omeka-S-module-DataTypeGeometry",
"authors": [
{
"name": "Daniel Berthereau",
"email": "Daniel.packagist@Berthereau.net"
}
],
"support": {
"issues": "https://gitlab.com/Daniel-KM/Omeka-S-module-DataTypeGeometry/-/issues",
"forum": "https://forum.omeka.org/"
},
"_require (not set until Omeka S merges PR #2412)": {
"omeka/omeka-s": "^4.0",
"daniel-km/omeka-s-module-common": "*"
},
"require": {
"longitude-one/doctrine-spatial": "^3.0",
"sempia/external-assets": "^1.0"
},
"provide": {
"doctrine/lexer": "*",
"doctrine/orm": "*"
},
"autoload": {
"psr-4": {
"DataTypeGeometry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DataTypeGeometryTest\\": "tests/DataTypeGeometryTest/"
}
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"sempia/external-assets": true
}
},
"extra": {
"installer-name": "DataTypeGeometry",
"configurable": true,
"external-assets": {
"asset/vendor/terraformer-wkt/t-wkt.umd-2.2.1.js": "https://unpkg.com/@terraformer/wkt@2.2.1/dist/t-wkt.umd.js"
}
}
}