-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·37 lines (37 loc) · 980 Bytes
/
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/book-module",
"version": "5.3.1",
"description": "A module for displaying a large structured document, creating figure descriptions for the book, and a glossary.",
"type": "zikula-module",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Timothy Paustian",
"homepage": "http://www.microbiologytext.com/"
}
],
"autoload": {
"psr-4": {"Paustian\\BookModule\\": ""}
},
"require": {
"php": ">7.2.5",
"zikula/core-bundle": "3.*"
},
"extra": {
"zikula": {
"url": "book",
"class": "Paustian\\BookModule\\PaustianBookModule",
"core-compatibility": ">=3.0.0",
"displayname": "Book Module",
"icon": "fas fa-book",
"oldnames": [],
"capabilities": {
"admin": {"route": "paustianbookmodule_admin_edit"},
"user": {"route": "paustianbookmodule_user_view"}
},
"securityschema": {
"PaustianBookModule::": "Book::Chapter"
}
}
}
}