Bug #70149
closedDependencies are not resolved correctly.
0%
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.
Updated by Nicole Cordes about 9 years ago
- Status changed from New to Rejected
This isn't a core issue. The extension has a composer.json file without any dependency defined. This file is loaded for extension information in 6.2. Ask the extension author to define the dependency correctly or remove the composer.json as it seems not to be relevant here at all.
Updated by Xavier Perseguers about 9 years ago
I dislike simply rejecting this issue. Of course composer is not officially supported for TYPO3 6.2. However we should aim at letting extension authors code for both 6.2 (current offical LTS stable release) and upcoming 7 LTS. Without "basically" supporting composer.json in 6.2 (I'd say possibly "ignoring it altogether"), we block that.