Deploy Symfony application to production – setting it live
This is a continuation of deploying symfony application to the server part one
Deploy Symfony application to production part two
4. Installing composer dependencies
Be in your symfony app first
cd /apps/symfony-app
The run the installer here
composer install --no-dev --optimize-autoloader
Under most circumstances, this will run without any problem. If there are any problems, composer will log them for you so follow those and solve those. And this will create a vendor folder in the folder you run composer. Continue reading how to deploy symfony application to the production server