Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 composer.json 中删除依赖项并运行 install 或 update 后,我是否应该期望文件会自动从磁盘中删除?
我不得不手动删除它们,不确定我是否应该这样做。
运行 composer update将删除您从 composer.json 中删除的包。
由于install使用composer.lock而不是composer.json它不会删除从您的composer.json中删除的包。但是,您应该会收到一条消息,指出您的锁定文件与您的composer.json不同步,您应该运行更新。