Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TASK] Redefine composer dependencies #419

Merged
merged 2 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Tests/Functional/AbstractDeepLTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ abstract class AbstractDeepLTestCase extends FunctionalTestCase
*/
protected array $coreExtensionsToLoad = [
'typo3/cms-setup',
'typo3/cms-scheduler',
];

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ final class ExtensionActiveViewHelperTest extends FunctionalTestCase

protected array $coreExtensionsToLoad = [
'typo3/cms-setup',
'typo3/cms-scheduler',
];

protected array $testExtensionsToLoad = [
Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@
"typo3/cms-core": "^12.4.2 || ^13.4",
"typo3/cms-extbase": "^12.4.2 || ^13.4",
"typo3/cms-fluid": "^12.4.2 || ^13.4",
"typo3/cms-install": "^12.4.2 || ^13.4",
"typo3/cms-scheduler": "^12.4.2 || ^13.4",
"typo3/cms-setup": "^12.4.2 || ^13.4"
},
"require-dev": {
Expand All @@ -105,6 +103,7 @@
"typo3/cms-fluid-styled-content": "^12.4.2 || ^13.4",
"typo3/cms-frontend": "^12.4.2 || ^13.4",
"typo3/cms-info": "^12.4.2 || ^13.4",
"typo3/cms-install": "^12.4.2 || ^13.4",
"typo3/cms-lowlevel": "^12.4.2 || ^13.4",
"typo3/cms-rte-ckeditor": "^12.4.2 || ^13.4",
"typo3/cms-styleguide": "^12.0.5 || ^13.4",
Expand All @@ -117,7 +116,9 @@
"b13/container": "Just to be loaded after EXT:container",
"web-vision/enable-translated-content": "Adds enable translated content button to language columns in page view",
"web-vision/deepltranslate-assets": "Enables the translation of files in FileList Modal via deepl",
"typo3/cms-dashboard": "Install the package to enable the widgets from deepltranslate packages"
"typo3/cms-dashboard": "Install the package to enable the widgets from deepltranslate packages",
"typo3/cms-install": "Install the package to run DeepL translate related upgrade wizards",
"web-vision/deepltranslate-glossary": "TYPO3 powered glossary for DeepL Translate. Manage your glossary for optimized translations"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
'backend' => '12.4.0-13.4.99',
'extbase' => '12.4.0-13.4.99',
'fluid' => '12.4.0-13.4.99',
'install' => '12.4.0-13.4.99',
'setup' => '12.4.0-13.4.99',
'scheduler' => '12.4.0-13.4.99',
],
'conflicts' => [
'recordlist_thumbnail' => '*',
Expand All @@ -27,8 +25,10 @@
'suggests' => [
'container' => '*',
'dashboard' => '*',
'install' => '*',
'enable_translated_content' => '*',
'deepltranslate_assets' => '*',
'deepltranslate_glossary' => '*',
],
],
'autoload' => [
Expand Down