-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
49 lines (49 loc) · 1.41 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
{
"name": "comwrap/typo3-twig_for_typo3",
"description": "A TYPO3 extension that integrates the Twig template engine into TYPO3 CMS.",
"homepage": "https://github.com/comwrap/typo3-twig_for_typo3",
"type": "typo3-cms-extension",
"license": "GPL-3.0+",
"version": "1.0.2",
"authors": [
{
"name": "comwrap GmbH",
"email": "[email protected]",
"homepage": "http://www.comwrap.com"
}
],
"replace": {
"twig_for_typo3": "self.version",
"typo3-ter/twig-for-typo3": "self.version"
},
"require": {
"symfony/filesystem": "^2.3||^3.0",
"twig/twig": "^2.0",
"typo3/cms-core": "^7.6||^8.7||^9.0"
},
"require-dev": {
"nimut/testing-framework": "^3.0.2",
"phpunit/phpunit": "^6.0",
"friendsofphp/php-cs-fixer": "^2.3"
},
"autoload": {
"psr-4": {
"Comwrap\\Typo3\\TwigForTypo3\\": "Classes/"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/twig_for_typo3 ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/twig_for_typo3"
]
},
"config": {
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}