-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
73 lines (73 loc) · 2.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
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
{
"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": "info@helhum.io",
"role": "Developer",
"homepage": "http://helhum.io"
}
],
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.2",
"typo3/cms-core": "^9.5.31 || ^10.4.2 || ^11.5.5"
},
"require-dev": {
"nimut/testing-framework": "^6.0",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
"autoload": {
"psr-4": {
"Helhum\\TyposcriptRendering\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Helhum\\TyposcriptRendering\\Tests\\": "Tests/"
}
},
"replace": {
"typo3-ter/typoscript-rendering": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/typoscript_rendering ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/typoscript_rendering"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"typo3/cms": {
"extension-key": "typoscript_rendering",
"app-dir": ".Build",
"web-dir": ".Build/public"
},
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
}
}
}