-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.28 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": "jweiland/rlmp_tmplselector",
"type": "typo3-cms-extension",
"description": "Select different templates for each page or tree branch. Easily works with either external html templates or pure TypoScript templates! Modified version based on the Modern Template Building tutorial.",
"license": "GPL-2.0-or-later",
"keywords": ["typo3", "TYPO3 CMS", "template", "selector"],
"homepage": "https://jweiland.net",
"authors": [
{
"name": "Stefan Froemken",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/jweiland-net/rlmp_tmplselector/issues",
"source": "https://github.com/jweiland-net/rlmp_tmplselector"
},
"require": {
"ext-json": "*",
"typo3/cms-core": "^8.7 || ^9.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"nimut/testing-framework": "^4.1"
},
"replace": {
"typo3-ter/rlmp_tmplselector": "self.version"
},
"autoload": {
"psr-4": {
"JWeiland\\RlmpTmplselector\\": "Classes"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "rlmp_tmplselector",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}