-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
45 lines (45 loc) · 880 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
38
39
40
41
42
43
44
45
{
"name": "jvdp/jpfaq",
"type": "typo3-cms-extension",
"description": "Frequently Asked Questions (FAQ) plugin. With categories, on-the-fly search, customer helpfulness tracking and comments.",
"homepage": "http://www.id-webdesign.nl",
"authors": [
{
"name": "Jacco van der Post",
"role": "Developer"
}
],
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3",
"extension",
"FAQ",
"frequently",
"asked",
"questions",
"help",
"glossary",
"definitions"
],
"support": {
"issues": "https://forge.typo3.org/projects/extension-jpfaq/"
},
"require": {
"typo3/cms-core": "^12.4"
},
"autoload": {
"psr-4": {
"Jp\\Jpfaq\\": "Classes/"
}
},
"replace": {
"typo3-ter/jpfaq": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "jpfaq"
}
}
}