-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathcomposer.json
50 lines (50 loc) · 1.05 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
{
"name": "typo3/cms-styleguide",
"type": "typo3-cms-framework",
"description": "TYPO3 extension to showcase TYPO3 Backend capabilities",
"authors": [{
"name": "TYPO3 Core Team",
"email": "typo3cms@typo3.org",
"role": "Developer"
}],
"homepage": "https://typo3.org",
"license": "GPL-2.0-or-later",
"keywords": [
"typo3",
"typo3 backend",
"style guide"
],
"support": {
"chat": "https://typo3.org/help",
"docs": "https://docs.typo3.org",
"issues": "https://forge.typo3.org",
"source": "https://github.com/typo3/typo3"
},
"require": {
"typo3/cms-core": "14.0.*@dev",
"typo3/cms-felogin": "14.0.*@dev",
"typo3/cms-fluid-styled-content": "14.0.*@dev",
"typo3/cms-form": "14.0.*@dev",
"typo3/cms-indexed-search": "14.0.*@dev",
"typo3/cms-seo": "14.0.*@dev"
},
"conflict": {
"typo3/cms": "*"
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Styleguide\\": "Classes/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "styleguide"
},
"branch-alias": {
"dev-main": "14.0.x-dev"
}
}
}