forked from TYPO3/testing-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.44 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
{
"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": ">= 7.2",
"phpunit/phpunit": "^8.4 || ^9.0",
"psr/container": "^1.0",
"mikey179/vfsstream": "~1.6.8",
"typo3fluid/fluid": "^2.5|^3",
"typo3/cms-core": "10.*.*@dev || 11.*.*@dev",
"typo3/cms-backend": "10.*.*@dev || 11.*.*@dev",
"typo3/cms-frontend": "10.*.*@dev || 11.*.*@dev",
"typo3/cms-extbase": "10.*.*@dev || 11.*.*@dev",
"typo3/cms-fluid": "10.*.*@dev || 11.*.*@dev",
"typo3/cms-recordlist": "10.*.*@dev || 11.*.*@dev",
"guzzlehttp/psr7": "^1.7 || ^2.0"
},
"conflict": {
"doctrine/dbal": "2.13.0 || 2.13.1"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"autoload": {
"psr-4": {
"TYPO3\\TestingFramework\\": "Classes/"
}
}
}