-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.06 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
{
"name": "colorcube/content-overview",
"type": "typo3-cms-extension",
"description": "TYPO3 backend module which gives and overview of the the content elements in a page tree.",
"keywords": [
"TYPO3",
"extension",
"module",
"content_overview"
],
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/colorcube/content_overview",
"support": {
"issues": "https://github.com/colorcube/content_overview/issues"
},
"authors": [
{
"name": "René Fritz",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.colorcube.de"
}
],
"require": {
"typo3/cms-core": "^10.4",
"typo3/cms-info": "^10.4"
},
"autoload": {
"psr-4": {
"Colorcube\\ContentOverview\\": "Classes"
}
},
"replace": {
"typo3-ter/content-overview": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "content_overview"
}
}
}