-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.08 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
{
"name": "daniel-km/omeka-s-module-easy-admin",
"description": "Module for Omeka S that improves admin interface for curators: install modules and themes, check database and files, simplify bulk upload, block concurrent edition, run cron tasks, use json endpoints.",
"type": "library",
"license": "CECILL-2.1",
"authors": [
{
"name": "Daniel Berthereau",
"email": "[email protected]"
}
],
"homepage": "https://gitlab.com/Daniel-KM/Omeka-S-module-EasyAdmin",
"support": {
"issues": "https://gitlab.com/Daniel-KM/Omeka-S-module-EasyAdmin/-/issues",
"forum": "https://forum.omeka.org/"
},
"keywords": [
"Omeka S",
"module",
"admin",
"install",
"checks",
"bulk upload",
"curation"
],
"require": {
"flowjs/flow-php-server": "^1.2",
"flowjs/flow.js": "^2.14",
"oomphinc/composer-installers-extender": "^2.0"
},
"require-dev": {
"biblibre/omeka-s-test-helper": "dev-master"
},
"autoload-dev": {
"psr-4": {
"EasyAdminTest\\": "test/EasyAdminTest/"
}
},
"repositories": [
{
"type": "package",
"package": {
"type": "omeka-addon-asset",
"name": "flowjs/flow.js",
"version": "2.14.1",
"dist": {
"type": "file",
"url": "https://github.com/Daniel-KM/Omeka-S-module-EasyAdmin/releases/download/3.4.18/flow.min.js"
}
}
}
],
"extra": {
"installer-types": [
"omeka-addon-asset"
],
"installer-paths": {
"asset/vendor/{$name}/": [
"type:omeka-addon-asset"
]
}
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"oomphinc/composer-installers-extender": true
}
}
}