-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
61 lines (61 loc) · 1.59 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
{
"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": "11.0.2",
"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": ">=10.4.0 <12.0.0"
},
"autoload": {
"psr-4": {
"RG\\TtNews\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "tt_news",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"require-dev": {
"ssch/typo3-rector": "^1.6",
"typo3/coding-standards": "^0.7",
"typo3/minimal": "^11.5"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"phpcsfixer": ".Build/bin/php-cs-fixer fix --config=Build/php-cs-fixer.php",
"rector": [
".Build/bin/rector process --config Build/rector.php",
"@phpcsfixer"
]
}
}