Sebastian Mendel
Sebastian Mendel
FYI @cweiske
This is now in branch "main", the old branch "master" is now branch v4.
There is no stable release yet, so it is WIP.
New approach in branch symfony4
[main](/netresearch/timetracker/tree/main) now holds a new approach, it is updated to Symfony 4 with PHP 8.2
will be looking into this after finishing https://github.com/netresearch/timetracker/tree/merge-master-u2
`ext_emconf.php` with `cms_rte_ckeditor` works because the name is identical to the composer package name and will be ignored by the check: `if ($this->isComposerDependency($dependentPackageKey)) {` `ext_emconf.php` with `rte_ckeditor` fails. In both...
The extension itself is installed: ``` $ cat .Build/vendor/typo3/cms-rte-ckeditor/ext_emconf.php ``` ```
Reason was missing `$coreExtensionsToLoad` in functional test: ```php protected array $coreExtensionsToLoad = [ 'typo3/cms-rte-ckeditor', ]; ``` Fixed with f9f8dac43721c095ec60478edba2a9e50bbfd40c in branch/upgrade_testsuite with MR #294
fixed with #294