forked from helhum/typoscript_rendering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.81 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
56
57
58
59
60
61
62
63
64
{
"name": "helhum/typoscript-rendering",
"type": "typo3-cms-extension",
"description": "Can render a TypoScript path by URL, especially useful for Ajax dispatching",
"keywords": [
"TYPO3",
"rendering",
"frontend"
],
"homepage": "http://insight.helhum.io/post/104880845705/dont-use-eid-ajax-dispatchers-for-your-extbase",
"support": {
"issues": "https://github.com/helhum/typoscript_rendering/issues"
},
"authors": [
{
"name": "Helmut Hummel",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://helhum.io"
}
],
"license": "GPL-2.0-or-later",
"require": {
"php": ">=5.5.0",
"typo3/cms-core": "^6.2 || ^7.6 || ^8.7"
},
"require-dev": {
"nimut/testing-framework": "^2.0 || ^3.0"
},
"autoload": {
"psr-4": {
"Helhum\\TyposcriptRendering\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Helhum\\TyposcriptRendering\\Tests\\": "Tests/"
}
},
"replace": {
"typoscript_rendering": "self.version",
"typo3-ter/typoscript-rendering": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/typoscript_rendering ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/typoscript_rendering"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"typo3/cms": {
"extension-key": "typoscript_rendering",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}