Hello > how do I keep my project always-sync without risking one of my composer > packages suddenly calling spawn() and causing bugs I have no idea how to even > begin to understand?
This idea was mentioned a bit earlier in the discussion. You can use a special setting to disable asynchrony. There are many different possibilities here. For example, you can tell Composer not to use async packages. And so on. You can come up with your own protection mechanisms. There is no technical problem here in terms of implementation. Why not enable asynchronous mode in PHP explicitly through php.ini? I would follow this logic: * Since this is a new feature, it should be disabled by default. * Therefore, to use it, you must explicitly enable it.
