-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.01 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
{
"name": "xima/content-information",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"description": "This extension provides useful information based on the content in your TYPO3 CMS installation.",
"version": "0.2.3",
"authors": [
{
"name": "Dennis Patzer",
"role": "Developer"
}
],
"require": {
"typo3/cms-backend": "^11.5",
"typo3/cms-beuser": "^11.5",
"typo3/cms-core": "^11.5",
"typo3/cms-extbase": "^11.5",
"typo3/cms-fluid": "^11.5",
"typo3/cms-form": "^11.5"
},
"require-dev": {
"typo3/tailor": "^1.5"
},
"autoload": {
"psr-4": {
"Xima\\ContentInformation\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "content_information"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}