forked from TYPO3/testing-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.34 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
{
"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://forge.typo3.org",
"irc": "irc://irc.freenode.net/#typo3-cms",
"news": "nntp://lists.typo3.org"
},
"require": {
"phpunit/phpunit": "^6.2",
"mikey179/vfsStream": "~1.6.0",
"typo3fluid/fluid": "^2.2",
"typo3/cms-core": "^9.1",
"typo3/cms-backend": "^9.1",
"typo3/cms-frontend": "^9.1",
"typo3/cms-extbase": "^9.1",
"typo3/cms-fluid": "^9.1"
},
"suggest": {
"codeception/codeception": "^2.2",
"typo3/cms-saltedpasswords": "^9.1",
"typo3/cms-styleguide": "~8.0.8"
},
"autoload": {
"psr-4": {
"TYPO3\\TestingFramework\\": "Classes/",
"TYPO3\\CMS\\Core\\Tests\\": "compat/core/",
"TYPO3\\CMS\\Fluid\\Tests\\": "compat/fluid/"
}
}
}