forked from TYPO3-CMS/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.14 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.14 KB
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
49
50
51
{
"name": "typo3/cms-frontend",
"type": "typo3-cms-framework",
"description": "Classes for the frontend of TYPO3.",
"homepage": "https://typo3.org",
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "TYPO3 Core Team",
"email": "typo3cms@typo3.org",
"role": "Developer"
}],
"support": {
"chat": "https://typo3.org/help",
"docs": "https://docs.typo3.org",
"issues": "https://forge.typo3.org",
"source": "https://github.com/typo3/typo3"
},
"config": {
"sort-packages": true
},
"require": {
"ext-libxml": "*",
"symfony/polyfill-mbstring": "^1.16",
"typo3/cms-core": "11.5.*@dev"
},
"conflict": {
"typo3/cms": "*"
},
"suggest": {
"typo3/cms-adminpanel": "Provides additional information and functionality for backend users in the frontend."
},
"extra": {
"branch-alias": {
"dev-master": "11.5.x-dev"
},
"typo3/cms": {
"Package": {
"serviceProvider": "TYPO3\\CMS\\Frontend\\ServiceProvider",
"protected": true,
"partOfFactoryDefault": true,
"partOfMinimalUsableSystem": true
},
"extension-key": "frontend"
}
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Frontend\\": "Classes/"
}
}
}