-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·37 lines (37 loc) · 1.13 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
{
"name": "paustian/quickcheck-module",
"version": "4.3.7",
"description": "Module for creating quizzes that you can attach to other modules",
"type": "zikula-module",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Timothy Paustian",
"homepage": "http://www.microbiologytext.com/"
}
],
"autoload": {
"psr-4": { "Paustian\\QuickcheckModule\\": "" }
},
"require": {
"php": ">7.2.5",
"zikula/core-bundle": "3.*"
},
"extra": {
"zikula": {
"url": "quickcheck",
"class": "Paustian\\QuickcheckModule\\PaustianQuickcheckModule",
"icon": "fas fa-book-open",
"core-compatibility": ">=3.0.0",
"displayname": "Quickcheck Module",
"oldnames": [],
"capabilities": {
"admin": {"route": "paustianquickcheckmodule_admin_modify"},
"user": {"route": "paustianquickcheckmodule_user_index"}
},
"securityschema": {
"PaustianQuickcheckModule::": "examid::questionid"
}
}
}
}