Reputation: 3
I'd like to install a special version of Symfony by Composer? I've looked over the documentation and it recommends to use Symfony package but I want to install it by composer. Is there any way to do this?
Thanks in advance.
Upvotes: 0
Views: 76
Reputation: 1560
I had the same issue, as I understood, you are able to run this command to install Symfony by the composer. In this command, you're going to install Symfony in a particular version.
composer create-project symfony/website-skeleton example-project "4.2.*"
Upvotes: 1