- πΊπΈUnited States amanire
I think this is a duplicate of https://www.drupal.org/project/upgrade_status/issues/3345997 π Package x is abandoned Fixed ?
- Status changed to Closed: duplicate
about 1 year ago 5:25pm 20 September 2023 - ππΊHungary GΓ‘bor Hojtsy Hungary
Yeah https://packagist.org/packages/mathieuviossat/arraytotexttable#v1.0.7 still dependened on Zend but later versions moved to Laminas and it does not depend on container-interop either. 4.x and 3.x of Upgrade Status both depend on
"mathieuviossat/arraytotexttable": "~1.0.0",
so they should have picked up this fix. Marking duplicate of π Package x is abandoned Fixed indeed. - π¬π§United Kingdom mustanggb Coventry, United Kingdom
Just to mention there is another slight "problem" with
mathieuviossat/arraytotexttable
.That being it effectively prevents PHP 8.2 usage.
Reason being that
drupal/core-recommended
wantspsr/container v2
.Whereas
mathieuviossat/arraytotexttable
wantspsr/container v1
.It "kind of works" because
laminas/laminas-servicemanager v3.15.0
(which is a dependency oflaminas/laminas-text
which is a dependency ofmathieuviossat/arraytotexttable
) allowed forpsr/container v1/v2
, however this was quickly realised as BC breaking and rolled back.However as a side effect
laminas/laminas-servicemanager v3.15.0
also has PHP 8.1 as a restriction.The end result being the only option for using
drupal/core-recommended
andmathieuviossat/arraytotexttable
is to use the "broken"laminas/laminas-servicemanager v3.15.0
, therefore no PHP 8.2 option.That being said there is a
laminas/laminas-servicemanager v4.0.0-rc2
that does supportpsr/container v2
and PHP 8.2, so this could be resolved soon-ish.