Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to uninstall (and not remove from my composer.json) dev dependencies on a project.

Is there a simple way to do this ?

Thanks, Yohang

share|improve this question

1 Answer

up vote 0 down vote accepted

Actually no. You can manually rm -rf them from the vendor dir of course, but composer offers no way to uninstall the dev requirements after you did an install with --dev. It's not a huge use case but could warrant a new command line switch, if you would like to report an issue on github.

share|improve this answer
1  
This behaviour has now changed. You just need to add the --dev switch to composer update to physically remove dev packages – Matt Humphrey Feb 22 at 16:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.