-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 796 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 796 Bytes
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
{
"name": "t3/scroll",
"description": "Prevents scroll jumps in TYPO3 CMS backend.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Armin Vieweg",
"email": "armin@v.ieweg.de",
"homepage": "https://v.ieweg.de"
}
],
"require": {
"php": ">=8.1",
"typo3/cms-core": "^12.4 || ^13.4",
"typo3/cms-backend": "*"
},
"autoload": {
"psr-4": {
"T3\\Scroll\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "scroll"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}