-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
62 lines (62 loc) · 1.45 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "typo3/cms-backend",
"type": "typo3-cms-framework",
"description": "TYPO3 CMS backend",
"homepage": "https://typo3.org",
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "TYPO3 Core Team",
"email": "[email protected]",
"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-intl": "*",
"ext-libxml": "*",
"psr/event-dispatcher": "^1.0",
"typo3/cms-core": "14.0.*@dev"
},
"suggest": {
"typo3/cms-install": "To generate url to install tool in environment toolbar"
},
"conflict": {
"typo3/cms": "*"
},
"replace": {
"typo3/cms-about": "self.version",
"typo3/cms-context-help": "self.version",
"typo3/cms-cshmanual": "self.version",
"typo3/cms-func-wizards": "self.version",
"typo3/cms-recordlist": "self.version",
"typo3/cms-t3editor": "self.version",
"typo3/cms-wizard-crpages": "self.version",
"typo3/cms-wizard-sortpages": "self.version"
},
"extra": {
"branch-alias": {
"dev-main": "14.0.x-dev"
},
"typo3/cms": {
"Package": {
"serviceProvider": "TYPO3\\CMS\\Backend\\ServiceProvider",
"protected": true,
"partOfFactoryDefault": true,
"partOfMinimalUsableSystem": true
},
"extension-key": "backend"
}
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Backend\\": "Classes/"
}
}
}