我正在运行这个命令:
composer require dingo/api:1.0.x@dev
但我第一次拼错了:
composer require dingo/zpi:1.0.x@dev
但是,即使我修复了错误(将 zpi 更改为 api),每次尝试运行命令时仍然会收到相同的错误:
Problem 1
- The requested package dingo/zpi could not be found in any version, there may be a typo in the package name.
我想也许跑步:
Composer clear-cache
会解决它,但没有骰子。 还有其他方法可以从系统中清除此错误吗?
在项目文件夹中打开composer.json
,并在dingo/zpi:1.0.x@dev
的require
部分中删除错误的条目。然后,您应该能够毫无问题地运行composer install
或composer update
。
该命令composer require dingo/zpi:1.0.x@dev
只是在composer.json
中添加了一个要求并运行composer install
。运行composer require dingo/api:1.0.x@dev
后,第二个要求已添加到composer.json
但第一个错误的要求并未删除。