forked from rupertgermann/tt_news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.32 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
{
"name": "rupertgermann/tt_news",
"type": "typo3-cms-extension",
"description": "Website news with front page teasers and article handling inside.",
"homepage": "https://typo3.org/extensions/repository/view/tt_news",
"keywords": [
"TYPO3",
"news",
"extension"
],
"version": "12.0.1",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Rupert Germann",
"email": "rg@pick2.de",
"homepage": "https://pick2-webservices.de",
"role": "Lead"
},
{
"name": "Jakob Berlin",
"email": "jakob@ybals.de",
"role": "Member"
}
],
"require": {
"typo3/cms-core": "^12.4"
},
"autoload": {
"psr-4": {
"RG\\TtNews\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "tt_news",
"web-dir": ".Build/public"
}
},
"require-dev": {
"helhum/typo3-console": "^8.2",
"ssch/typo3-rector": "^2.11",
"typo3/coding-standards": "^0.8",
"typo3/cms-info": "^12.4",
"typo3/cms-reports": "^12.4",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-belog": "^12.4",
"typo3/cms-backend": "^12.4",
"typo3/cms-beuser": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-extensionmanager": "^12.4",
"typo3/cms-filelist": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-install": "^12.4",
"typo3/cms-lowlevel": "^12.4",
"typo3/cms-rte-ckeditor": "^12.4",
"typo3/cms-tstemplate": "^12.4",
"typo3/cms-workspaces": "^12.4"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"post-update-cmd": [
"typo3 database:updateschema",
"typo3 extension:setup",
"typo3 cache:flush"
],
"phpcsfixer": ".Build/bin/php-cs-fixer fix --config=Build/php-cs-fixer.php",
"rector": [
".Build/bin/rector process --config Build/rector.php",
"@phpcsfixer"
]
}
}