Actions
Bug #70149
closedDependencies are not resolved correctly.
Start date:
2015-09-28
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.6
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
On (at least) TYPO3 6.2.15 dependencies between EXT:realurl
and EXT:seo_basics
are not resolved correctly in PackageStates.php
.
Current realurl
(1.13.4) defines
'depends' => [ 'php' => '5.3.2-5.999.999', 'typo3' => '4.5.40-7.9.999', 'lowlevel' => '1.0.0-100.0.0', ],
Current seo_basics
(0.9.0) defines
'depends' => [ 'realurl' => '0.0.0-0.0.0', 'typo3' => '6.2.0-7.9.99', ],
Uninstalling both extensions and installing seo_basics
via EM installs realurl
too, but in PackageStates.php
seo_basics
is always above realurl
leading to configuration not being set in seo_basics/ext_localconf.php
Manually moving seo_basics
entry below the one of realurl
temporarily solves the problem but any action in em resets the order again.
Actions