-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.47 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
{
"name": "bartacus/twig-bundle",
"type": "typo3-cms-extension",
"description": "Support bundle for using Twig together with Bartacus and TYPO3",
"keywords": [ "typo3", "symfony", "twig" ],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Stefan Herndler"
},
{
"name": "Simon Kendler"
},
{
"name": "pixelart GmbH",
"homepage": "https://www.pixelart.at"
}
],
"require": {
"php": "^8.3",
"composer-runtime-api": "^2.1",
"bartacus/bartacus-bundle": "^6.0",
"symfony/config": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/http-kernel": "^7.1",
"twig/twig": "^3.14",
"typo3/cms-core": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-frontend": "^13.4"
},
"autoload": {
"psr-4": {
"Bartacus\\Bundle\\TwigBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extensions-in-vendor-dir": true,
"prepare-web-dir": false,
"extension-key": "bartacus_twig"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"cweagans/composer-patches": true
}
}
}