-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 1.65 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_testing",
"type": "typo3-cms-extension",
"description": "The testing extension of TYPO3voilà.",
"authors": [
{
"name": "Maik Kempe",
"email": "mkempe@bitaculous.com",
"role": "Developer"
}
],
"keywords": [
"CMS",
"Extension",
"T3v",
"Testing",
"TYPO3",
"TYPO3voilà",
"UH LÁLÁ"
],
"homepage": "https://t3v.github.io/t3v_testing/",
"support": {
"issues": "https://github.com/t3v/t3v_testing/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_testing": "self.version"
},
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org"
}
],
"require": {
"php": ">= 8.0",
"typo3/cms-core": "^11.5.22 || ^12.1.3",
"typo3/testing-framework": "^6.16 || dev-main"
},
"require-dev": {
"ext-dom": "*"
},
"autoload": {
"psr-4": {
"T3v\\T3vTesting\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"T3v\\T3vTesting\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"app-dir": ".build",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "t3v_testing",
"web-dir": ".build/web"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/t3v_testing ] || ln -snvf ../../../../. .build/web/typo3conf/ext/t3v_testing"
]
}
}