forked from Nimut/testing-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.42 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
78
79
{
"name": "nimut/testing-framework",
"description": "TYPO3 testing framework that provides base classes and configuration for PHPUnit tests",
"keywords": [
"TYPO3 CMS",
"PHPUnit",
"testing"
],
"homepage": "https://github.com/Nimut/TYPO3-testing-framework",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Nicole Cordes",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Helmut Hummel",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://helhum.io"
}
],
"repositories": [
{
"type": "path",
"url": "tests/Packages/*"
}
],
"require": {
"php": ">= 5.5, < 7.4",
"typo3/cms-backend": "^8.7 || ^9.5 || dev-master",
"typo3/cms-core": "^8.7 || ^9.5 || dev-master",
"typo3/cms-extbase": "^8.7 || ^9.5 || dev-master",
"typo3/cms-fluid": "^8.7 || ^9.5 || dev-master",
"typo3/cms-frontend": "^8.7 || ^9.5 || dev-master",
"typo3/cms-install": "^8.7 || ^9.5 || dev-master",
"typo3/cms-recordlist": "^8.7 || ^9.5 || dev-master",
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.0",
"mikey179/vfsstream": "^1.6"
},
"require-dev": {
"nimut/testing-framework-testbase": "@dev",
"nimut/phpunit-merger": "^0.2"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Tool to automatically fix PHP coding standards issues"
},
"conflict": {
"symfony/finder": "2.7.44 || 2.8.37 || 3.4.7 || 4.0.7"
},
"autoload": {
"psr-4": {
"Nimut\\TestingFramework\\": "src/TestingFramework/",
"Nimut\\TestingFramework\\v76\\": "compat/v76/",
"Nimut\\TestingFramework\\v87\\": "compat/v87/",
"Nimut\\TestingFramework\\v90\\": "compat/v90/",
"Nimut\\TestingFramework\\v91\\": "compat/v91/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"include-path": [
".Build/vendor/pear/http_request2/",
".Build/vendor/pear/net_url2/"
]
}