這篇文章主要介紹composer的報(bào)錯(cuò)問題及解決辦法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)專注于企業(yè)成都全網(wǎng)營(yíng)銷推廣、網(wǎng)站重做改版、南澳網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5建站、購物商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為南澳等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
問題1
執(zhí)行以下命令:
composer require sonata-project/doctrine-orm-admin-bundle "2.3.*"
報(bào)錯(cuò):
PHP Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 32 bytes)
解決:
php -r "echo ini_get('memory_limit').PHP_EOL;" # 查看memory大小 COMPOSER_MEMORY_LIMIT=-1 composer require sonata-project/doctrine-orm-admin-bundle # 臨時(shí)設(shè)置memory大小
參看官方說明(打開太慢了):
https://getcomposer.org/doc/articles/troubleshooting.md#memory-limit-errors
問題2
but these conflict with your requirements or minimum-stability.
解決:在composer.json中添加以下
"minimum-stability": "dev",
切換composer國(guó)內(nèi)鏡像
composer config -g repo.packagist composer https://packagist.phpcomposer.com
以上是“composer的報(bào)錯(cuò)問題及解決辦法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!