以下由composer教學專欄為大家介紹composer的一些報錯及解決方法,希望對需要的朋友有幫助!
問題1
執行以下命令:
composer require sonata-project/doctrine-orm-admin-bundle "2.3.*"
錯誤:
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 # 临时设置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國內鏡像
composer config -g repo.packagist composer https://packagist.phpcomposer.com
更多composer相關技術文章,請造訪composer專欄:https://www.php.cn/tool/composer/
以上是composer的一些報錯及解決辦法的詳細內容。更多資訊請關注PHP中文網其他相關文章!