Composer loading from cache

前端 未结 9 1407
爱一瞬间的悲伤
爱一瞬间的悲伤 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条回答
  •  Happy的楠姐
    2021-02-02 05:35

    In some cases (for example OpenSuse 42.1) all user cache are puts in:

    ~/.cache/
    

    For the composer, the same as other applications, the cache path is:

    ~/.cache/composer/
    

    So, just remove this folder as follow:

    rm -fR ~/.cache/composer
    

提交回复
热议问题