forked from zikula-modules/Legal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.38 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.38 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
{
"name": "zikula/legal-module",
"version": "3.1.0",
"description": "Provides an interface for managing the site's legal documents.",
"type": "zikula-module",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Zikula Development Team",
"homepage": "http://zikula.org"
}
],
"autoload": {
"psr-4": { "Zikula\\LegalModule\\": "" }
},
"require": {
"php": ">=5.5.9"
},
"extra": {
"zikula": {
"class": "Zikula\\LegalModule\\ZikulaLegalModule",
"core-compatibility": ">=1.5.0",
"displayname": "Legal",
"url": "legal",
"oldnames": ["Legal"],
"capabilities": {
"admin": {"route": "zikulalegalmodule_config_config"},
"user": {"route": "zikulalegalmodule_user_termsofuse"}
},
"securityschema": {
"ZikulaLegalModule::": "::",
"ZikulaLegalModule::legalNotice": "::",
"ZikulaLegalModule::termsOfUse": "::",
"ZikulaLegalModule::privacyPolicy": "::",
"ZikulaLegalModule::agePolicy": "::",
"ZikulaLegalModule::accessibilityStatement": "::",
"ZikulaLegalModule::cancellationRightPolicy": "::",
"ZikulaLegalModule::tradeConditions": "::"
}
}
}
}