forked from TYPO3-Documentation/TYPO3CMS-Reference-CoreApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 3.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "typo3/reference-coreapi",
"type": "typo3-cms-documentation",
"description": "Main TYPO3 core documentation",
"license": "OPL-1.0",
"require": {
"typo3/cms-core": "dev-main as 12.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"web-dir": ".Build/public",
"extension-key": "t3docs-reference-coreapi"
}
},
"repositories": {
"1a_git": {
"type": "vcs",
"url": "https://github.com/TYPO3-Documentation/tea.git"
},
"1c_git": {
"type": "vcs",
"url": "https://github.com/TYPO3-Documentation/blog_example.git"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
},
"vendor-dir": ".Build/vendor"
},
"require-dev": {
"t3docs/codesnippet": "dev-main",
"t3docs/blog-example": "dev-main",
"typo3/cms-adminpanel": "dev-main as 12.0",
"typo3/cms-backend": "dev-main as 12.0",
"typo3/cms-belog": "dev-main as 12.0",
"typo3/cms-beuser": "dev-main as 12.0",
"typo3/cms-dashboard": "dev-main as 12.0",
"typo3/cms-extbase": "dev-main as 12.0",
"typo3/cms-extensionmanager": "dev-main as 12.0",
"typo3/cms-felogin": "dev-main as 12.0",
"typo3/cms-filelist": "dev-main as 12.0",
"typo3/cms-filemetadata": "dev-main as 12.0",
"typo3/cms-fluid": "dev-main as 12.0",
"typo3/cms-fluid-styled-content": "dev-main as 12.0",
"typo3/cms-form": "dev-main as 12.0",
"typo3/cms-frontend": "dev-main as 12.0",
"typo3/cms-impexp": "dev-main as 12.0",
"typo3/cms-indexed-search": "dev-main as 12.0",
"typo3/cms-info": "dev-main as 12.0",
"typo3/cms-install": "dev-main as 12.0",
"typo3/cms-linkvalidator": "dev-main as 12.0",
"typo3/cms-lowlevel": "dev-main as 12.0",
"typo3/cms-opendocs": "dev-main as 12.0",
"typo3/cms-recycler": "dev-main as 12.0",
"typo3/cms-redirects": "dev-main as 12.0",
"typo3/cms-reports": "dev-main as 12.0",
"typo3/cms-rte-ckeditor": "dev-main as 12.0",
"typo3/cms-scheduler": "dev-main as 12.0",
"typo3/cms-seo": "dev-main as 12.0",
"typo3/cms-setup": "dev-main as 12.0",
"typo3/cms-sys-note": "dev-main as 12.0",
"typo3/cms-t3editor": "dev-main as 12.0",
"typo3/cms-tstemplate": "dev-main as 12.0",
"typo3/cms-viewpage": "dev-main as 12.0",
"typo3/cms-workspaces": "dev-main as 12.0",
"ttn/tea": "^3.0",
"t3docs/examples": "dev-main",
"t3docs/site-package": "dev-main",
"typo3-documentation-team/speeddemo": "^11.4",
"typo3/cms-styleguide": "dev-main"
},
"scripts": {
"generate:codesnippets": [
".Build/vendor/bin/typo3 codesnippet:create Documentation/"
],
"generate": [
"@generate:codesnippets"
]
}
}