How to force Composer to download a local package?(如何强制 Composer 下载本地包?)
问题描述
假设我们有以下目录结构,我们假设 my-package
也存在于 Packagist:
Let's say we have the following directory structure, we assume my-package
also exists on Packagist:
- apps
\_ my-app
\_ composer.json
- packages
\_ my-package
\_ composer.json
要将 my/package
添加为 my-app 的依赖项,文档声明我们可以使用以下配置:
To add my/package
as a dependency of my-app, the documentation states we can use the following configuration:
{
"repositories": [
{
"type": "path",
"url": "../../packages/my-package"
}
],
"require": {
"my/package": "*"
}
}
但是,当我 composer update
时,依赖项仍然是从 Packagist 下载的.所以,看看,我禁用了 Packagist.org:
However when I composer update
, the dependency is still downloaded from Packagist. So, to see, I disabled Packagist.org:
{
"repositories": [
{
"type": "path",
"url": "../../packages/my-package",
"packagist.org": false
}
],
"require": {
"my/package": "*"
}
}
我使用 composer clearcache
清除缓存,使用 composer remove my/package
删除 my/package
并使用 再次安装composer require my/package --prefer-source
(我不明白 --prefer-source
是否仅适用于 vcs).下载的包还是不是本地的.如何强制作曲家使用本地的?
I cleared the cache with composer clearcache
, removed my/package
with composer remove my/package
and installed it again with composer require my/package --prefer-source
(I didn't understand if --prefer-source
is for vcs only). The downloaded package is still not the local one. How to force composer to use the local one?
推荐答案
"require": {
"my/package": "*"
}
如果是 VCS
或 path
存储库类型,您需要指定您请求的包的版本.因此,不要像现在那样使用 *
,而是使用 @dev
:
In case of VCS
or path
repository types, you need to specify version of the package you request. So instead of using *
, as you have currently, use @dev
:
"require": {
"my/package": "@dev"
}
这篇关于如何强制 Composer 下载本地包?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何强制 Composer 下载本地包?
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01