【发布时间】:2017-07-07 16:15:28
【问题描述】:
当我运行 composer update 时,我在继续更新之前收到以下警告。
The "extra.asset-installer-paths" option is deprecated, use the "config.fxp-asset.installer-paths" option
在哪里/如何更改这些设置?
【问题讨论】:
标签: php configuration composer-php
当我运行 composer update 时,我在继续更新之前收到以下警告。
The "extra.asset-installer-paths" option is deprecated, use the "config.fxp-asset.installer-paths" option
在哪里/如何更改这些设置?
【问题讨论】:
标签: php configuration composer-php
将extra.asset-installer-paths 部分替换为:
"config": {
"fxp-asset": {
"installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
},
}
【讨论】: