-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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
- Loading branch information
Showing
4 changed files
with
87 additions
and
3 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
Resources/Core/Functional/Extensions/json_response/composer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
Resources/Core/Functional/Extensions/private_container/composer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters