This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
77 lines (77 loc) · 2.39 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": "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/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": "^7.2 || ^8.0",
"typo3/cms-backend": "^9.5.13 || ^10.4 || ^11.5.3 || dev-main",
"typo3/cms-core": "^9.5.13 || ^10.4 || ^11.5.3 || dev-main",
"typo3/cms-extbase": "^9.5.13 || ^10.4 || ^11.5.3 || dev-main",
"typo3/cms-fluid": "^9.5.13 || ^10.4 || ^11.5.3 || dev-main",
"typo3/cms-frontend": "^9.5.13 || ^10.4 || ^11.5.3 || dev-main",
"typo3/cms-install": "^9.5.13 || ^10.4 || ^11.5.3 || dev-main",
"typo3/cms-recordlist": "^9.5.13 || ^10.4 || ^11.5.3 || dev-main",
"phpunit/phpunit": "^8.5.22 || ^9.5",
"mikey179/vfsstream": "^1.6.7"
},
"require-dev": {
"composer/composer": "^2.1",
"nimut/testing-framework-testbase": "@dev",
"nimut/phpunit-merger": "^1.0"
},
"conflict": {
"doctrine/dbal": "2.13.0 || 2.13.1",
"symfony/finder": "2.7.44 || 2.8.37 || 3.4.7 || 4.0.7",
"typo3/cms-composer-installers": "<1.5",
"typo3/phar-stream-wrapper": "<3.1.3"
},
"autoload": {
"psr-4": {
"Nimut\\TestingFramework\\": "src/TestingFramework/",
"Nimut\\TestingFramework\\v10\\": "compat/v10/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"branch-alias": {
"dev-main": "6.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
},
"include-path": [
".Build/vendor/pear/http_request2/",
".Build/vendor/pear/net_url2/"
]
}