Drop dev dependencies
Anyone using bazaar most likely does not need any dev dependencies, let's not install those in our vendor.
Well, that's why they are called dev dependencies!
People should install bazaar with --no-dev / --update-no-dev flag
Bazaar itself already runs composer in production mode. (It's not clearly visible because it's the default behavior; in the official composer CLI the absence of the --no-dev flags sets the setDevMode(). Example: https://github.com/composer/composer/blob/master/src/Composer/Command/InstallCommand.php#L104)
I meant that bazaar should install packages without including dev dependencies by default. I wasn't specifically talking about installing bazaar 😁
It's not working then? It should :sweat_smile:
It's not about dist mode, it's about dev mode:
https://github.com/composer/composer/blob/master/src/Composer/Command/InstallCommand.php#L105
Oh that's what you said too, but doesn't composer set dev mode if left out.. Seems like it doesn't. We'd have to confirm this anyway.