Skip to content

Commit a6aa622

Browse files
committed
[TASK] Add missing composer.json to testing-framework extensions
The typo3/testing-framework provides two TYPO3 extensions, which are required and bound to every created functional test instance. Adding missing `composer.json` for these two extensions. Releases: main, 8
1 parent f31a26f commit a6aa622

File tree

4 files changed

+87
-3
lines changed

4 files changed

+87
-3
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "typo3/testing-json-response",
3+
"type": "typo3-cms-extension",
4+
"description": "Providing testing framework extension for functional testing.",
5+
"keywords": [
6+
"typo3",
7+
"testing",
8+
"tests"
9+
],
10+
"homepage": "https://typo3.org/",
11+
"license": "GPL-2.0-or-later",
12+
"authors": [
13+
{
14+
"name": "TYPO3 CMS Core Team",
15+
"role": "Developer",
16+
"homepage": "https://forge.typo3.org/projects/typo3cms-core"
17+
},
18+
{
19+
"name": "The TYPO3 Community",
20+
"role": "Contributor",
21+
"homepage": "https://typo3.org/community/"
22+
}
23+
],
24+
"support": {
25+
"general": "https://typo3.org/support/",
26+
"issues": "https://github.com/TYPO3/testing-framework/issues"
27+
},
28+
"require": {
29+
"php": "^8.2",
30+
"typo3/cms-core": "13.*.*@dev || 14.*.*@dev"
31+
},
32+
"autoload": {
33+
"psr-4": {
34+
"TYPO3\\JsonResponse\\": "Classes/"
35+
}
36+
},
37+
"extra": {
38+
"typo3/cms": {
39+
"extension-key": "json_response"
40+
}
41+
}
42+
}

Resources/Core/Functional/Extensions/json_response/ext_emconf.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
'title' => 'JSON Response',
55
'description' => 'JSON Response',
66
'category' => 'example',
7-
'version' => '9.4.0',
7+
'version' => '1.0.0',
88
'state' => 'beta',
99
'author' => 'Oliver Hader',
1010
'author_email' => '[email protected]',
1111
'author_company' => '',
1212
'constraints' => [
1313
'depends' => [
14-
'typo3' => '9.4.0',
14+
'typo3' => '13.0.0 - 14.9.99',
1515
],
1616
'conflicts' => [],
1717
'suggests' => [],
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "typo3/testing-private-container",
3+
"type": "typo3-cms-extension",
4+
"description": "Providing testing framework extension for functional testing.",
5+
"keywords": [
6+
"typo3",
7+
"testing",
8+
"tests"
9+
],
10+
"homepage": "https://typo3.org/",
11+
"license": "GPL-2.0-or-later",
12+
"authors": [
13+
{
14+
"name": "TYPO3 CMS Core Team",
15+
"role": "Developer",
16+
"homepage": "https://forge.typo3.org/projects/typo3cms-core"
17+
},
18+
{
19+
"name": "The TYPO3 Community",
20+
"role": "Contributor",
21+
"homepage": "https://typo3.org/community/"
22+
}
23+
],
24+
"support": {
25+
"general": "https://typo3.org/support/",
26+
"issues": "https://github.com/TYPO3/testing-framework/issues"
27+
},
28+
"require": {
29+
"php": "^8.2",
30+
"typo3/cms-core": "13.*.*@dev || 14.*.*@dev"
31+
},
32+
"autoload": {
33+
"psr-4": {
34+
"TYPO3\\PrivateContainer\\": "Classes/"
35+
}
36+
},
37+
"extra": {
38+
"typo3/cms": {
39+
"extension-key": "private_container"
40+
}
41+
}
42+
}

Resources/Core/Functional/Extensions/private_container/ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
'author_company' => '',
1111
'constraints' => [
1212
'depends' => [
13-
'typo3' => '11.0.0-12.99.99',
13+
'typo3' => '13.0.0-14.99.99',
1414
],
1515
'conflicts' => [],
1616
'suggests' => [],

0 commit comments

Comments
 (0)