Skip to content

Commit

Permalink
[TASK] Add deepltranslate_glossary as suggestion
Browse files Browse the repository at this point in the history
Moving the glossary to an add-on extension should be respected by adding the
glossary as suggestion to ext_emconf.php and composer.json
  • Loading branch information
calien666 authored and sbuerk committed Dec 20, 2024
1 parent 7abd98a commit 70e0beb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
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
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +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-setup": "^12.4.2 || ^13.4"
},
"require-dev": {
Expand All @@ -104,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 @@ -116,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
3 changes: 2 additions & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
'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',
],
'conflicts' => [
Expand All @@ -26,8 +25,10 @@
'suggests' => [
'container' => '*',
'dashboard' => '*',
'install' => '*',
'enable_translated_content' => '*',
'deepltranslate_assets' => '*',
'deepltranslate_glossary' => '*',
],
],
'autoload' => [
Expand Down

0 comments on commit 70e0beb

Please sign in to comment.