How to lock project version in symfony

1

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

Does anyone know the command to do this?

    
asked by anonymous 04.01.2016 / 14:34

1 answer

2

In the composer you will define it as follows:

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

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

    
04.01.2016 / 15:56