1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

composer: more information (#4111)

Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
This commit is contained in:
Maxime Veber 2020-06-19 12:54:32 +02:00 committed by GitHub
parent bd1216ba60
commit fb0fed50fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,11 +3,15 @@
> A package-based dependency manager for PHP projects.
> More information: <https://getcomposer.org/>.
- Interactively create a `composer.json` file:
`composer init`
- Add a package as a dependency for this project, adding it to `composer.json`:
`composer require {{user/package_name}}`
- Install all the dependencies in this project's `composer.json`:
- Install all the dependencies in this project's `composer.json` and create `composer.lock`:
`composer install`
@ -15,10 +19,18 @@
`composer remove {{user/package_name}}`
- Update all the dependencies in this project's `composer.json`:
- Update all the dependencies in this project's `composer.json` and note versions in `composer.lock` file:
`composer update`
- Update composer to the latest version:
- Update composer lock only after updating `composer.json` manually:
`composer update --lock`
- Learn more about why a dependency can't be installed:
`composer why-not {{user/package_name}}`
- Update composer to its latest version:
`composer self-update`