-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 806 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 806 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": "patrickbroens/url-forwarding",
"type": "typo3-cms-extension",
"description": "Redirects (301, 302, 303, 307) to internal/external page or file, based on domain and path",
"keywords": [
"TYPO3",
"redirect",
"shortcut"
],
"authors": [
{
"name": "Patrick Broens",
"email": "patrick.broens@typo3.org",
"homepage": "https://github.com/patrickbroens"
}
],
"require": {
"typo3/cms-core": "*"
},
"replace": {
"url_forwarding": "self.version",
"typo3-ter/url-forwarding": "self.version"
},
"autoload": {
"psr-4": {
"PatrickBroens\\UrlForwarding\\": "Classes/"
}
},
"homepage": "https://github.com/patrickbroens/TYPO3.UrlForwarding",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/patrickbroens/TYPO3.UrlForwarding/issues"
}
}