-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
91 lines (91 loc) · 2.69 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "daniel-km/omeka-s-module-bulk-import",
"description": "Module for Omeka S implementing extensible bulk import for xml, sql databases, spreedsheets, and json endpoints.",
"type": "library",
"license": "CECILL-2.1",
"authors": [
{
"name": "Daniel Berthereau",
"email": "[email protected]"
}
],
"homepage": "https://gitlab.com/Daniel-KM/Omeka-S-module-BulkImport",
"support": {
"issues": "https://gitlab.com/Daniel-KM/Omeka-S-module-BulkImport/-/issues",
"forum": "https://forum.omeka.org/"
},
"keywords": [
"Omeka S",
"module",
"admin",
"import",
"migration"
],
"require": {
"ext-xml": "*",
"codemirror/codemirror": "^5.65",
"cweagans/composer-patches": "^1.7",
"daniel-km/simple-iso-3166-1": "^0.2",
"daniel-km/simple-iso-639-3": "^0.2",
"hakre/xmlreaderiterator": "^0.1",
"james-heinrich/getid3": "^2.0-dev",
"mikehaertl/php-pdftk": "^0.13",
"mtdowling/jmespath.php": "^2.7",
"oomphinc/composer-installers-extender": "^2.0",
"openspout/openspout": "^3.7",
"softcreatr/jsonpath": "^0.7"
},
"replace": {
"laminas/laminas-escaper": "*",
"laminas/laminas-zendframework-bridge": "*",
"symfony/polyfill-mbstring": "*"
},
"require-dev": {
"biblibre/omeka-s-test-helper": "dev-master"
},
"autoload-dev": {
"psr-4": {
"BulkImportTest\\": "test/BulkImportTest/"
}
},
"repositories": [
{
"type": "package",
"package": {
"type": "omeka-addon-asset",
"name": "codemirror/codemirror",
"version": "5.65.13",
"dist": {
"type": "zip",
"url": "https://codemirror.net/5/codemirror.zip"
}
}
}
],
"extra": {
"installer-types": [
"omeka-addon-asset"
],
"installer-paths": {
"asset/vendor/{$name}/": [
"type:omeka-addon-asset"
]
},
"installer-name" : "BulkImport",
"patches": {
"softcreatr/jsonpath": {
"Fix deprecation for JsonPath 0.7.6 on php 8 (minimum required by Omeka is php 7.4)": "patches/jsonpath.patch"
}
}
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"oomphinc/composer-installers-extender": true
}
}
}