Is possible to manually update deps
file to get the latest version of Doctrine 2.2? I\'d like to use the new Paginator component. So basically i wa
By removing the deps.lock
file you're obviously putting yourself at risk to getting unstable code.
I have used the following steps to minimize the risk of breaking something:
deps.lock
git checkout [commit]
where [commit] is the new hash.deps.lock
and run bin/vendors install
Keep in mind that I would strongly advise against this. Should you screw things up, you're pretty much on your own and there's no-one to help you.