How to Lock Project Version on Symfony

Asked

Viewed 34 times

1

I have a version 2.6 on symfony and would like to lock my project in it so as not to risk an update and start giving bugs.

Someone knows the command to do this?

1 answer

2


In Composer you will define as follows:

"symfony/symfony": "2.6.*",

Doing so, when you use the command composer update, only the bug fixes specific to this version will be updated.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.