-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 1.75 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
74
75
76
77
{
"name": "t3v/t3v_base",
"type": "typo3-cms-extension",
"description": "The base extension of TYPO3voilà.",
"authors": [
{
"name": "Maik Kempe",
"email": "mkempe@bitaculous.com",
"role": "Developer"
}
],
"keywords": [
"Base",
"CMS",
"Extension",
"T3v",
"TYPO3",
"TYPO3voilà",
"UH LÁLÁ"
],
"homepage": "https://t3v.github.io/t3v_base/",
"support": {
"issues": "https://github.com/t3v/t3v_base/issues"
},
"license": "MIT",
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor"
},
"minimum-stability": "dev",
"prefer-stable": true,
"replace": {
"typo3-ter/t3v_base": "self.version"
},
"require": {
"php": ">= 7.4",
"typo3/cms-core": "^10.4.36 || ^11.5.25",
"fluidtypo3/vhs": "^6.1",
"b13/picture": "^1.3",
"sitegeist/sms-responsive-images": "^2.1",
"t3v/t3v_core": "dev-develop",
"t3v/t3v_translations": "dev-develop"
},
"require-dev": {
"ext-dom": "*",
"t3v/t3v_testing": "^2.0"
},
"autoload": {
"psr-4": {
"T3v\\T3vBase\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"T3v\\T3vTesting\\Tests\\": ".build/web/typo3conf/ext/t3v_testing/Tests/",
"T3v\\T3vBase\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"app-dir": ".build",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "t3v_base",
"web-dir": ".build/web"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/t3v_base ] || ln -snvf ../../../../. .build/web/typo3conf/ext/t3v_base"
]
}
}