-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·60 lines (60 loc) · 1.51 KB
/
composer.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.51 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
{
"name": "exelearning/omeka-s-exelearning",
"description": "Upload, view and edit eXeLearning content (.elpx files) in Omeka S",
"type": "omeka-s-module",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Área de Tecnología Educativa",
"email": "ate.educacion@gobiernodecanarias.org"
}
],
"homepage": "https://github.com/exelearning/omeka-s-exelearning",
"support": {
"issues": "https://github.com/exelearning/omeka-s-exelearning/issues"
},
"keywords": [
"Omeka S",
"module",
"eXeLearning",
"elpx",
"educational content"
],
"require": {
"php": ">=7.4",
"ext-zip": "*"
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"omeka/composer-addon-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "*",
"zerocrates/extract-tagged-strings": "dev-master",
"laminas/laminas-form": "^3.4"
},
"autoload": {
"psr-4": {
"ExeLearning\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ExeLearningTest\\": "test/",
"Omeka\\": "test/Stubs/Omeka/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/zerocrates/extract-tagged-strings.git"
}
]
}