-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
70 lines (70 loc) · 2.04 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
{
"name": "typo3/testing-framework",
"description": "The TYPO3 testing framework provides base classes for unit, functional and acceptance testing.",
"keywords": [
"typo3",
"testing",
"tests"
],
"homepage": "https://typo3.org/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "TYPO3 CMS Core Team",
"role": "Developer",
"homepage": "https://forge.typo3.org/projects/typo3cms-core"
},
{
"name": "The TYPO3 Community",
"role": "Contributor",
"homepage": "https://typo3.org/community/"
}
],
"support": {
"general": "https://typo3.org/support/",
"issues": "https://github.com/TYPO3/testing-framework/issues"
},
"require": {
"php": "^8.2",
"composer/class-map-generator": "^1.3.4",
"guzzlehttp/psr7": "^2.5.0",
"phpunit/phpunit": "^11.2.5",
"psr/container": "^2.0",
"typo3/cms-backend": "13.*.*@dev || 14.*.*@dev",
"typo3/cms-core": "13.*.*@dev || 14.*.*@dev",
"typo3/cms-extbase": "13.*.*@dev || 14.*.*@dev",
"typo3/cms-fluid": "13.*.*@dev || 14.*.*@dev",
"typo3/cms-frontend": "13.*.*@dev || 14.*.*@dev"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"autoload": {
"psr-4": {
"TYPO3\\TestingFramework\\": "Classes/",
"TYPO3\\JsonResponse\\": "Resources/Core/Functional/Extensions/json_response/Classes/",
"TYPO3\\PrivateContainer\\": "Resources/Core/Functional/Extensions/private_container/Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\TestingFramework\\Tests\\": "Tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65.0",
"phpstan/phpstan": "^2.0.2",
"phpstan/phpstan-phpunit": "^2.0.1",
"typo3/cms-workspaces": "13.*.*@dev || 14.*.*@dev"
},
"replace": {
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": "*"
}
}