-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 786 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 786 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
35
36
37
38
39
40
41
42
{
"name": "georgringer/uri2link",
"type": "typo3-cms-extension",
"description": "Convert external url like domain.tld/services to TYPO3 links if this is url is actually served by TYPO3",
"keywords": [
"TYPO3",
"extension",
"uri",
"link",
"url"
],
"homepage": "https://ringer.it",
"authors": [
{
"name": "Georg Ringer",
"role": "Developer",
"homepage": "https://ringer.it"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^11.5.34 || ^12.4.10",
"typo3/cms-frontend": "^11.5.34 || ^12.4.10"
},
"autoload": {
"psr-4": {
"GeorgRinger\\Uri2Link\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"GeorgRinger\\Uri2Link\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "uri2link"
}
}
}