-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.08 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
48
{
"name": "tollwerk/tw-base",
"type": "typo3-cms-extension",
"description": "Collection of building blocks and view helpers for TYPO3 projects made by tollwerk",
"homepage": "https://github.com/tollwerk/TYPO3-ext-tw_base",
"license": "GPL-2.0+",
"authors": [
{
"name": "Joschi Kuphal",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Tollwerk\\TwBase\\": "Classes/"
}
},
"replace": {
"tollwerk/tw-base": "self.version",
"typo3-ter/tw_base": "self.version"
},
"keywords": [
"typo3",
"fluid",
"extbase",
"viewhelper",
"mozjpeg",
"webp",
"picture"
],
"require": {
"ext-dom": "*",
"ext-json": "*",
"ext-curl": "*",
"typo3/cms-core": "^10.4.22",
"soundasleep/html2text": "^1.1",
"wyrihaximus/html-compress": "^4.1"
},
"suggest": {
"sjbr/static-info-tables": "Data and API for countries, languages and currencies for use in TYPO3 CMS",
"typo3/cms-form": "Form Library, Plugin and Editor"
},
"extra": {
"typo3/cms": {
"extension-key": "tw_base"
}
}
}