I install simplesamlphp using a dockerfile.
With version 1.19.5, I can do it with:
FROM composer:2.1 as builder
WORKDIR /app/
RUN composer require
simplesamlphp/simplesamlphp:v1.19.5
But with version 1.19.6 i get this error:
simplesamlphp/simplesamlphp v1.19.6 requires gettext/gettext v4.x-dev#3e7460f8d9c90174824e3f39240bd578bb3d376a -> found gettext/gettext[4.x-dev] but it does not match your minimum-stability.
Is is posible to update gettext dependency to a stable version?
Thanks