Why updating of dependencies in composer is so slow?

后端 未结 5 782
夕颜
夕颜 2021-01-30 06:31

I am using composer (http://getcomposer.org/) to manage installed bundles in the Symfony2 (symfony v 2.1.3). Version of the composer is de3188c.

5条回答
  •  甜味超标
    2021-01-30 06:56

    To diagnose this use I used the require command with -vvv attribute.

    composer require larapack/dd -vvv
    

    In my case I've found that the slow speed of composer was because of fxp/composer-asset-plugin.

    composer global show
    composer global remove fxp/composer-asset-plugin
    

    and voila

提交回复
热议问题