mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 22:02:08 +02:00

* pages/*, style-guide: update pages, fix Markdown (commit 1) * Update pages * style-guide.de: update page * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * pip3: remove search command * rpm: update path placeholder Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages/linux/pkgfile.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: pixel <pixel+github@chrissx.de>
36 lines
923 B
Markdown
36 lines
923 B
Markdown
# composer
|
|
|
|
> 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}}`
|
|
|
|
- Install all the dependencies in this project's `composer.json` and create `composer.lock`:
|
|
|
|
`composer install`
|
|
|
|
- Uninstall a package from this project, removing it as a dependency from `composer.json`:
|
|
|
|
`composer remove {{user/package}}`
|
|
|
|
- Update all the dependencies in this project's `composer.json` and note versions in `composer.lock` file:
|
|
|
|
`composer update`
|
|
|
|
- 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}}`
|
|
|
|
- Update composer to its latest version:
|
|
|
|
`composer self-update`
|