The solution for me after months of searching was to not install dev packages in production.
Remove your vendor directory and install only the non-dev packages:
rm -rf vendor
composer install --prefer-dist --no-dev -o