Composer loading from cache

前端 未结 9 1286
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-02 04:54

i ran in a problem using composer for installing/uninstalling some dependencies in laravel which coming back after deleting them from composer.json and deleting the

9条回答
  •  伪装坚强ぢ
    2021-02-02 05:40

    I think, you can run your composer commands with --no-cache option flag like

    composer install --no-cache
    

    Or

    composer require  --no-cache
    

    Or

    composer update [] --no-cache
    

提交回复
热议问题