Emre Günevi
Emre Günevi

Reputation: 3

How Can I install Symfony with the version by composer?

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

Answers (1)

Mert Simsek
Mert Simsek

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

Related Questions