The following tutorial column ofcomposerwill introduce to you the solution to the problem of slow composer usage. I hope it will be helpful to friends in need!
Let’s briefly talk about the difference between composer update and composer install: Here is the mechanism of composer. When the `composer.lock` file exists, when the `composer install` command is executed , composer will update and install according to the specified version of the package in `composer.lock`. If `composer update` is executed, the `package` version will be updated, and the `composer.lock` file will be updated (I don’t understand the difference, Refer to Zhihu).
The recommended acceleration method in composer China is to replace the default foreign image with a domestic one.
Specific steps:
composer config repo.packagist composer https://packagist.phpcomposer.com
This command is to modify the config.json configuration
Then add the following to the composer.json file in your project:
"repositories": { "packagist": { "type": "composer", "url": "https://packagist.phpcomposer.com" } }
After the test, the speed has become much faster.
The above is the detailed content of How to solve the problem of slow composer usage. For more information, please follow other related articles on the PHP Chinese website!