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
but these conflict with your requirements or minimum-stability.
"minimum-stability": "dev",
composer config -g repo.packagist composer https://packagist.phpcomposer.com
composer 列をご覧ください: https://www.php.cn/tool/composer/
以上がいくつかのコンポーザーのエラーと解決策の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。