Skip to content

Commit

Permalink
[TASK] Add missing composer.json to testing-framework extensions
Browse files Browse the repository at this point in the history
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
  • Loading branch information
sbuerk committed Nov 28, 2024
1 parent d056d1c commit 0fa866c
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 3 deletions.
42 changes: 42 additions & 0 deletions Resources/Core/Functional/Extensions/json_response/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"name": "typo3/testing-json-response",
"type": "typo3-cms-extension",
"description": "Providing testing framework extension for functional 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": "^8.1",
"typo3/cms-core": "12.*.*@dev || 13.*.*@dev"
},
"autoload": {
"psr-4": {
"TYPO3\\JsonResponse\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "json_response"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
'title' => 'JSON Response',
'description' => 'JSON Response',
'category' => 'example',
'version' => '9.4.0',
'version' => '1.0.0',
'state' => 'beta',
'author' => 'Oliver Hader',
'author_email' => 'oliver@typo3.org',
'author_company' => '',
'constraints' => [
'depends' => [
'typo3' => '9.4.0',
'typo3' => '12.0.0 - 13.9.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"name": "typo3/testing-private-container",
"type": "typo3-cms-extension",
"description": "Providing testing framework extension for functional 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": "^8.1",
"typo3/cms-core": "12.*.*@dev || 13.*.*@dev"
},
"autoload": {
"psr-4": {
"TYPO3\\PrivateContainer\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "private_container"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'author_company' => '',
'constraints' => [
'depends' => [
'typo3' => '11.0.0-12.99.99',
'typo3' => '12.0.0-13.99.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit 0fa866c

Please sign in to comment.