-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.24 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
{
"name": "leuchtfeuer/gone",
"description": "Automatically generates redirects (301) when a URL changes and returns a gone status code (410) when a page / record has been deleted.",
"keywords": [
"410",
"301",
"Status Code",
"Redirect"
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://www.Leuchtfeuer.com",
"authors": [
{
"name": "Florian Wessels",
"email": "f.wessels@Leuchtfeuer.com",
"role": "Developer",
"homepage": "https://www.Leuchtfeuer.com"
}
],
"support": {
"issues": "https://github.com/Leuchtfeuer/gone/issues",
"source": "https://github.com/Leuchtfeuer/gone",
"email": "dev@Leuchtfeuer.com",
"docs": "https://docs.typo3.org/p/leuchtfeuer/gone/master/en-us/"
},
"require": {
"typo3/cms-backend": "^9.5.25 || ^10.4.14",
"typo3/cms-core": "^9.5.25 || ^10.4.14",
"typo3/cms-extbase": "^9.5.25 || ^10.4.14",
"typo3/cms-frontend": "^9.5.25 || ^10.4.14"
},
"autoload": {
"psr-4": {
"Leuchtfeuer\\Gone\\": "Classes/"
}
},
"replace": {
"typo3-ter/gone": "self.version",
"bitmotion/gone": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "gone"
}
}
}