Which knowledge points of composer are easy to ignore?

藏色散人
Release: 2020-06-12 13:13:56
forward
2076 people have browsed it

The following is a tutorial column by composer to introduce you to the easily overlooked knowledge of composer. I hope it will be helpful to friends in need!

Which knowledge points of composer are easy to ignore?

1.composer version number~ ^ *

(1) Package version: *

{
"require": {
    "monolog/monolog": "1.0.*"
}
}
Copy after login

1.0.* This means any slave Development branches starting with 1.0 will match 1.0.0, 1.0.2 or 1.0.20.

(2) Package version: ~

~1.2 is equivalent to >=1.2,<2.0, that is version 1, matching the first 1 digit 1.

~1.2 It just means that the .2 part can change, but the 1. part is fixed.

(3) Package version: ^

^1.2.3 is equivalent to >=1.2.3 <1.3, which matches the first 2 digits 1.2

2.composer install

(1) If composer.lock already exists, read composer.lock to download dependencies.

(2) If there is no composer.lock file, read the composer.json file, process the dependencies, and install it into the vendor directory.

That is to say, if you have a copy of composer.lock locally, you can ensure that no matter how long it takes, you can pull the same dependencies.

So composer.lock should be placed in the git repository. This can ensure that everyone and every computer in your project, no matter what system, can pull the exact same dependencies to reduce Impact of potential dependencies on deployment.

3.composer update

Read the dependencies specified in composer.json, then pull the dependencies into the vendor directory, and write the exact version numbers of all pulled dependencies into composer .lock file.

(1)So when do you need to use composer update?

For example, when a new version released by an extension has new features we need, then we need to update the extension. When we update, we specify the specific updated extension name, such as composer update package instead of composer update directly. Because after direct composer update, all extensions will be updated, which is very risky.

4. Summary:

(1) composer update is updated according to composer.json, and writes the extended version number into composer.lock.

(2) composer install is updated according to composer.lock

(3) Use composer update less during the development process, composer install

should be used (4) If new To add a package, you can use: composer require "package name: version number"

For more composer technical articles, please visit the composer column!

The above is the detailed content of Which knowledge points of composer are easy to ignore?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!