After doing a git clone, composer install and running docker-compose run php /var/www/html/bin/build -v I was suprised that nothing has changed in the data directory. I came to the conclusion that this is because of old versions being locked down in the composer.lock file.
After doing a
git clone
,composer install
and runningdocker-compose run php /var/www/html/bin/build -v
I was suprised that nothing has changed in the data directory. I came to the conclusion that this is because of old versions being locked down in the composer.lock file.Furthermore the
symfony/locale
is deprecated, see https://symfony.com/components/Locale. That's why I replaced it withsymfony/intl
.