-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.25 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
49
50
51
52
53
54
55
{
"name": "tollwerk/tw-componentlibrary",
"type": "typo3-cms-extension",
"description": "Component library features for your TYPO3 project",
"homepage": "https://github.com/tollwerk/TYPO3-ext-tw_componentlibrary",
"license": "GPL-2.0+",
"require": {
"ext-json": "*",
"typo3/cms-core": "^10.0",
"alom/graphviz": "^1.1"
},
"suggest": {
"ext-tidy": "Enable source code formatting"
},
"autoload": {
"psr-4": {
"Tollwerk\\TwComponentlibrary\\": "Classes/",
"Tollwerk\\TwComponentlibrary\\Component\\": "Components/"
}
},
"autoload-dev": {
"psr-4": {
"Tollwerk\\TwComponentlibrary\\Tests\\": "Tests/",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"replace": {
"tollwerk/tw-componentlibrary": "self.version",
"typo3-ter/tw_componentlibrary": "self.version"
},
"authors": [
{
"name": "Joschi Kuphal",
"email": "joschi@tollwerk.de"
}
],
"keywords": [
"fractal",
"fractal-adapter",
"fractal-plugin",
"frctl",
"typo3",
"fluid",
"extbase",
"typoscript",
"component",
"library",
"inventory"
],
"extra": {
"typo3/cms": {
"extension-key": "tw_componentlibrary"
}
}
}