2017-04-20 12:27:57 +01:00
|
|
|
# composer
|
|
|
|
|
|
|
|
> A package-based dependency manager for PHP projects.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://getcomposer.org/>.
|
2017-04-20 12:27:57 +01:00
|
|
|
|
2020-06-19 11:54:32 +01:00
|
|
|
- Interactively create a `composer.json` file:
|
|
|
|
|
|
|
|
`composer init`
|
|
|
|
|
2017-04-20 12:27:57 +01:00
|
|
|
- Add a package as a dependency for this project, adding it to `composer.json`:
|
|
|
|
|
2018-10-29 11:14:25 +00:00
|
|
|
`composer require {{user/package_name}}`
|
2017-04-20 12:27:57 +01:00
|
|
|
|
2020-06-19 11:54:32 +01:00
|
|
|
- Install all the dependencies in this project's `composer.json` and create `composer.lock`:
|
2017-04-20 12:27:57 +01:00
|
|
|
|
|
|
|
`composer install`
|
|
|
|
|
|
|
|
- Uninstall a package from this project, removing it as a dependency from `composer.json`:
|
|
|
|
|
2018-10-29 11:14:25 +00:00
|
|
|
`composer remove {{user/package_name}}`
|
2017-04-20 12:27:57 +01:00
|
|
|
|
2020-06-19 11:54:32 +01:00
|
|
|
- Update all the dependencies in this project's `composer.json` and note versions in `composer.lock` file:
|
2017-04-20 12:27:57 +01:00
|
|
|
|
|
|
|
`composer update`
|
|
|
|
|
2020-06-19 11:54:32 +01:00
|
|
|
- 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:
|
2017-04-20 12:27:57 +01:00
|
|
|
|
|
|
|
`composer self-update`
|