After I updated my lando plugins with lando update (phpmyadmin plugin is now in v1.4.0) and rebuilt my project lando rebuild -y, with the pma service defined like this in my .lando.yml:
services:
pma:
type: phpmyadmin
I noticed deprecation notices in phpMyAdmin interface like this :

Inspecting docker shows that the phpmyadmin/phpmyadmin:5.2.1 image is used.

The documentation seems not up to date on this point.

But the more anoying is the version of phpMyAdmin displayed in its UI does not match the docker tag used and the bunch of deprecation notices that make the interface hardly usable.

phpMyAdmin seems not ready for php8.
as a workaround, I set explicitely version 5.1, to have a usable phpMyAdmin service.
services:
pma:
type: phpmyadmin:5.1
After I updated my lando plugins with
lando update(phpmyadmin plugin is now in v1.4.0) and rebuilt my projectlando rebuild -y, with the pma service defined like this in my.lando.yml:I noticed deprecation notices in phpMyAdmin interface like this :
Inspecting docker shows that the
phpmyadmin/phpmyadmin:5.2.1image is used.The documentation seems not up to date on this point.
But the more anoying is the version of phpMyAdmin displayed in its UI does not match the docker tag used and the bunch of deprecation notices that make the interface hardly usable.
phpMyAdmin seems not ready for php8.
as a workaround, I set explicitely version 5.1, to have a usable phpMyAdmin service.