从缓存加载编写器

我运行在一个问题使用作曲家安装/卸载一些依赖关系在 laravel 的回来后删除他们从 composer.json和删除他们的供应商文件夹,我最初使用 dFlydev 的标记包,但现在我想改变它到 michelf 的 php 标记,但我不能卸载旧的,因为它回来从缓存加载,我在 AppData\Roaming\Composer检查,是空的,任何线索为什么会发生这种情况?

  - Installing dflydev/markdown (dev-master dee1f7a)
Loading from cache
176594 次浏览

composer caches packages under vendor/packagename convention. So you shouldn't run into any issue, just because the packagename is used in another vendor's package.

the cache locations are:

  • Windows: %LOCALAPPDATA%\Composer\files\vendor\packagename
  • Linux: ~/.composer/cache/files/vendor/packagename
  • Mac OS: ~/.composer/cache/files/packagename

run the following command

rm -rf ~/.composer/cache*

if Permission denied add sudo

You can use the following command to clear the cache irrespective of the OS you are on:

php composer.phar clear-cache

or if composer is installed globally

composer clear-cache

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

If you want to clear all packages cache, please try following:

$ composer clearcache

Or to just clear one or a few packages:

$ composer clearcache packagename1 packagename2 ...

You can also use clear-cache which is an alias for clearcache.

Source : https://blog.liplex.de/clear-composer-cache/

Don't edit your composer.json file manually to remove a package - it will remain in composer.lock.

Use composer remove to delete the old package then composer require to install the replacement.

On Window, I see the composer cache file located in
C:\Users\{your_user}\AppData\Local\Composer\files

enter image description here

It stores ZIP files. The below image has 2 Zip files because I have downloaded 2 versions of monolog (1.0.1 and 1.0.2) enter image description here

To remove the cache, simply delete the Zip file or folder.

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

composer install --no-cache

Or

composer require <package-name> --no-cache

Or

composer update [<package-name>] --no-cache

So the only thing that worked for me on my Macbook was removing the package from my composer.json, deleting my composer.lock, running composer update, then adding the package back to composer.json, deleting my composer.lock(again), and running composer update (again). I had a local package in my instance of Laravel Nova that I changed to all lowercase from CamelCase and no matter what I did, it kept adding the package with the old CamelCase name. Didn't matter if I cleared caches or anything.