-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (43 loc) · 1.02 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
38
39
40
41
42
43
44
45
46
{
"name": "jv/jvchat",
"description": "jv chat , made vjchat compatible for TYPO3 LTS 11 ",
"type": "typo3-cms-extension",
"non-feature-branches": ["development"],
"support": {
"issues": "https://github.com/velletti/jvchat/issues"
},
"keywords": [
"TYPO3 CMS",
"jvchat",
"Chat Room"
],
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "https://github.com/velletti/jvchat/",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"JV\\Jvchat\\": "Classes/"
},
"classmap": [
"pi1/"
]
},
"require": {
"php": ">=7.4.0",
"typo3/cms-core": "^10.4 || ^11.5"
},
"replace": {
"jvchat": "self.version",
"typo3-ter/jvchat": "self.version"
},
"scripts": {
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "build/web",
"extension-key": "jvchat"
}
}
}