-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
38 lines (38 loc) · 851 Bytes
/
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
{
"name": "georgringer/news-redirect-slug-change",
"type": "typo3-cms-extension",
"description": "Generate redirect if the slug changes",
"keywords": [
"TYPO3",
"extension",
"article",
"news",
"redirect",
"seo",
"slug"
],
"authors": [
{
"name": "Georg Ringer",
"role": "Developer"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^10.4 || ^11 || ^12.3",
"typo3/cms-redirects": "^10.4 || ^11 || ^12.3",
"georgringer/news": "^9 || ^10 || ^11"
},
"autoload": {
"psr-4": {
"GeorgRinger\\NewsRedirectSlugChange\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "news_redirect_slug_change"
}
}
}