-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
89 lines (89 loc) · 2.43 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
{
"name": "daniel-km/omeka-s-module-log",
"description": "Log (module for Omeka S)",
"type": "library",
"license": "CECILL-2.1",
"authors": [
{
"name": "Daniel Berthereau",
"email": "[email protected]"
}
],
"homepage": "https://gitlab.com/Daniel-KM/Omeka-S-module-Log",
"support": {
"issues": "https://gitlab.com/Daniel-KM/Omeka-S-module-Log/-/issues",
"forum": "https://forum.omeka.org/"
},
"keywords": [
"Omeka S",
"module",
"monitor",
"log",
"psr-3",
"logging",
"job",
"admin"
],
"require": {
"php": ">=7.4",
"grimmlink/webui-popover": "^1.2",
"laminas/laminas-db": "^2.15",
"oomphinc/composer-installers-extender": "^2.0"
},
"replace": {
"laminas/laminas-log": "2.15",
"laminas/laminas-stdlib": "*"
},
"require-dev": {
"biblibre/omeka-s-test-helper": "dev-master"
},
"autoload": {
"psr-4": {
"Log\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LogTest\\": "test/LogTest/"
}
},
"extra": {
"installer-types": ["omeka-addon-asset"],
"installer-paths": {
"asset/vendor/{$name}/": [
"type:omeka-addon-asset"
]
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "grimmlink/webui-popover",
"version": "1.2.18",
"type": "omeka-addon-asset",
"dist": {
"type": "tar",
"url": "https://github.com/grimmlink/webui-popover/archive/refs/heads/master.tar.gz"
},
"extra": {
"installer-name": "webui-popover-full"
}
}
}
],
"scripts": {
"post-install-cmd": "@build",
"post-update-cmd": "@build",
"build": [
"@php -r '@rename(__DIR__ . \"/asset/vendor/webui-popover-full/dist\", __DIR__ . \"/asset/vendor/webui-popover\");'",
"@php -r 'exec(sprintf(\"rm -rf %s\", escapeshellarg(__DIR__ . \"/asset/vendor/webui-popover-full\")));'"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"oomphinc/composer-installers-extender": true
}
}
}