-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.07 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
47
48
{
"name": "teamneusta/modmod",
"type": "typo3-cms-extension",
"description": "Add-on to pw_comments to moderate comments across pages. This extension provides a dashboard widget and a web module.",
"license": ["GPL-2.0-or-later"],
"homepage": "http://www.team-neusta.de/",
"authors": [
{
"name": "team neusta GmbH",
"role": "Developer",
"homepage": "https://team-neusta.de/"
},
{
"name": "Tobias Kretschmann",
"role": "Developer",
"email": "[email protected]"
},
{
"name": "Malek Olabi",
"role": "Developer",
"email": "[email protected]"
}
],
"version": "3.0.0",
"require": {
"php": ">=8.1",
"typo3/cms-core": "^11.5 || ^12.4",
"teamneusta/pw_comments": "^6.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"extra": {
"typo3/cms": {
"extension-key": "modmod"
}
},
"autoload": {
"psr-4": {
"Neusta\\Modmod\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Neusta\\Modmod\\Tests\\": "Tests/"
}
}
}