-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 2.44 KB
/
Copy pathcomposer.json
File metadata and controls
94 lines (94 loc) · 2.44 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "in2code/fetchurl",
"type": "typo3-cms-extension",
"description": "Fetch an url and show the content in a TYPO3 Frontend.",
"keywords": [
"typo3",
"fetch",
"iframe"
],
"homepage": "https://github.com/in2code-de/fetchurl",
"support": {
"issues": "https://github.com/in2code-de/fetchurl/issues"
},
"authors": [
{
"name": "Stefan Busemann",
"role": "Product owner",
"email": "stefan.busemann@in2code.de",
"homepage": "https://www.in2code.de"
},
{
"name": "Alex Kellner",
"email": "alexander.kellner@in2code.de",
"role": "Developer",
"homepage": "https://www.in2code.de"
},
{
"name": "Marcus Schwemer",
"email": "marcus.schwemer@in2code.de",
"role": "Developer",
"homepage": "https://www.in2code.de"
}
],
"license": "GPL-3.0",
"require": {
"php": ">=8.1.0",
"typo3/cms-core": "^12.4 || ^13.4",
"typo3/cms-extbase": "^12.4 || ^13.4",
"typo3/cms-frontend": "^12.4 || ^13.4"
},
"require-dev": {
"typo3/tailor": "^1.3",
"typo3/cms-install": "^12.4 || ^13.4",
"typo3/cms-backend": "^12.4 || ^13.4",
"typo3/cms-filelist": "^12.4 || ^13.4",
"typo3/cms-info": "^12.4 || ^13.4",
"typo3/cms-lowlevel": "^12.4 || ^13.4",
"typo3/cms-extensionmanager": "^12.4 || ^13.4",
"typo3/cms-fluid-styled-content": "^12.4 || ^13.4",
"typo3/cms-setup": "^12.4 || ^13.4",
"typo3/cms-belog": "^12.4 || ^13.4",
"typo3/cms-beuser": "^12.4 || ^13.4",
"helhum/typo3-console": "^9.0"
},
"replace": {
"typo3-ter/fetchurl": "self.version"
},
"autoload": {
"psr-4": {
"In2code\\Fetchurl\\": "Classes"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"funding": [
{
"type": "other",
"url": "https://www.in2code.de/supportopensource"
},
{
"type": "github",
"url": "https://github.com/orgs/in2code-de/sponsoring"
}
],
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/public/typo3conf/ext/",
"[ -L .build/public/typo3conf/ext/fetchurl ] || ln -snvf ../../../../. .build/public/typo3conf/ext/fetchurl"
]
},
"extra": {
"typo3/cms": {
"web-dir": ".build/public",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "fetchurl"
}
}
}