diff --git a/test-and-deploy.yml b/test-and-deploy.yml
index a33577a80f5e740cad953ec54edce763e790740a..7b66e1f1a6fbeb71e3713761ad92569d2f7fa013 100644
--- a/test-and-deploy.yml
+++ b/test-and-deploy.yml
@@ -713,14 +713,14 @@ Debug:
     - if [[ $DOINSTALL -eq 1 ]]; then composer install --no-interaction --no-progress --no-dev; fi
     - if [[ $DOINSTALL -eq 1 ]]; then git add * >/dev/null 2>&1 || true; fi
     - if [[ $DOINSTALL -eq 1 ]]; then echo "Initial installation" >/tmp/test.log; fi
-    - if [[ $DOINSTALL -eq 0 ]]; then composer update --no-interaction --no-progress --no-dev --dry-run $NAMESPACES_CHECK_UPDATE >/tmp/test.log 2>&1 || EC=$?; fi
+    - if [[ $DOINSTALL -eq 0 ]]; then composer update --with-all-dependencies --no-interaction --no-progress --no-dev --dry-run $NAMESPACES_CHECK_UPDATE >/tmp/test.log 2>&1 || EC=$?; fi
     - if [[ $EC -ne 0 ]]; then cat /tmp/test.log; exit 1; fi
     - EC=0
     - grep "Nothing to modify in lock file" /tmp/test.log || EC=$?
     - if [[ $EC -ne 0 ]]; then DOUPDATE=1; fi
     - rm /tmp/test.log >/dev/null 2>&1 || true
     - if [[ $DOUPDATE -eq 0 ]]; then exit 0; fi
-    - composer update --no-interaction --no-progress --no-dev
+    - composer update --with-all-dependencies --no-interaction --no-progress --no-dev
   only:
     variables:
       - $CHECKUPDATES
@@ -795,7 +795,7 @@ Debug:
     - !reference [.prepareaccess, before_script]
     - !reference [.preparecomposerplugins, before_script]
   script:
-    - composer update --no-interaction --no-progress
+    - composer update --with-all-dependencies --no-interaction --no-progress
     - composer diagnose --no-interaction || true
     - composer audit --no-dev --locked --format=table
   rules:
@@ -832,7 +832,7 @@ Debug:
     - !reference [.prepareaccess, before_script]
     - !reference [.preparecomposerplugins, before_script]
   script:
-    - composer update --no-interaction --no-progress
+    - composer update --with-all-dependencies --no-interaction --no-progress
     - composer outdated --minor-only --strict --no-interaction $OUTDATED_EXTRAS
     - composer outdated --patch-only --strict --no-interaction $OUTDATED_EXTRAS
   rules: