Last updated on 21st May 2025

Using the latest composer version in the Build Pipeline

In order to be able to use Composer 2.8.8 in the Build Pipeline, the workaround for the time being would be:

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php composer-setup.php --install-dir=. --filename=composer --version=2.8.8
php -r "unlink('composer-setup.php');"

php ./composer --version

We are going to update the version in the default container from 2.6.6 to 2.8.8 soon.

Happy deploying!