-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.27 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
{
"name": "typo3/cms-redirects",
"type": "typo3-cms-framework",
"description": "TYPO3 CMS Redirects - Create manual redirects, list existing redirects and automatically create\nredirects on slug changes.",
"homepage": "https://typo3.org",
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "TYPO3 Core Team",
"email": "[email protected]",
"role": "Developer"
}],
"support": {
"chat": "https://typo3.org/help",
"docs": "https://docs.typo3.org/c/typo3/cms-redirects/main/en-us/",
"issues": "https://forge.typo3.org",
"source": "https://github.com/typo3/typo3"
},
"config": {
"sort-packages": true
},
"require": {
"doctrine/dbal": "^4.2.1",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^3.0.1",
"symfony/console": "^7.1.4",
"typo3/cms-backend": "14.0.*@dev",
"typo3/cms-core": "14.0.*@dev",
"typo3fluid/fluid": "^4.0.2"
},
"conflict": {
"typo3/cms": "*"
},
"suggest": {
"typo3/cms-reports": "Get reports of redirects",
"typo3/cms-scheduler": "Execute commands to update redirect status"
},
"extra": {
"branch-alias": {
"dev-main": "14.0.x-dev"
},
"typo3/cms": {
"extension-key": "redirects",
"Package": {
"partOfFactoryDefault": true
}
}
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Redirects\\": "Classes/"
}
}
}