parent
f1877afc0b
commit
2fd4275e62
|
@ -109,7 +109,7 @@ resolution.
|
|||
installation and show you what would happen.
|
||||
* **--dev:** Install packages listed in `require-dev` (this is the default behavior).
|
||||
* **--no-dev:** Skip installing packages listed in `require-dev`. The autoloader
|
||||
generation skips the `autoload-dev` rules.
|
||||
generation skips the `autoload-dev` rules. Also see [COMPOSER_NO_DEV](#composer-no-dev).
|
||||
* **--no-autoloader:** Skips autoloader generation.
|
||||
* **--no-progress:** Removes the progress display that can mess with some
|
||||
terminals or scripts which don't handle backspace characters.
|
||||
|
@ -192,7 +192,7 @@ and this feature is only available for your root package dependencies.
|
|||
Passing this flag will override the config value.
|
||||
* **--dry-run:** Simulate the command without actually doing anything.
|
||||
* **--dev:** Install packages listed in `require-dev` (this is the default behavior).
|
||||
* **--no-dev:** Skip installing packages listed in `require-dev`. The autoloader generation skips the `autoload-dev` rules.
|
||||
* **--no-dev:** Skip installing packages listed in `require-dev`. The autoloader generation skips the `autoload-dev` rules. Also see [COMPOSER_NO_DEV](#composer-no-dev).
|
||||
* **--no-install:** Does not run the install step after updating the composer.lock file.
|
||||
* **--no-audit:** Does not run the audit steps after updating the composer.lock file.
|
||||
* **--audit-format:** Audit output format. Must be "table", "plain", "json", or "summary" (default).
|
||||
|
@ -271,7 +271,7 @@ If you do not specify a package, Composer will prompt you to search for a packag
|
|||
* **--no-install:** Does not run the install step after updating the composer.lock file.
|
||||
* **--no-audit:** Does not run the audit steps after updating the composer.lock file.
|
||||
* **--audit-format:** Audit output format. Must be "table", "plain", "json", or "summary" (default).
|
||||
* **--update-no-dev:** Run the dependency update with the `--no-dev` option.
|
||||
* **--update-no-dev:** Run the dependency update with the `--no-dev` option. Also see [COMPOSER_NO_DEV](#composer-no-dev).
|
||||
* **--update-with-dependencies (-w):** Also update dependencies of the newly required packages, except those that are root requirements.
|
||||
* **--update-with-all-dependencies (-W):** Also update dependencies of the newly required packages, including those that are root requirements.
|
||||
* **--ignore-platform-reqs:** ignore all platform requirements (`php`, `hhvm`,
|
||||
|
@ -317,7 +317,7 @@ uninstalled.
|
|||
* **--no-install:** Does not run the install step after updating the composer.lock file.
|
||||
* **--no-audit:** Does not run the audit steps after installation is complete.
|
||||
* **--audit-format:** Audit output format. Must be "table", "plain", "json", or "summary" (default).
|
||||
* **--update-no-dev:** Run the dependency update with the --no-dev option.
|
||||
* **--update-no-dev:** Run the dependency update with the --no-dev option. Also see [COMPOSER_NO_DEV](#composer-no-dev).
|
||||
* **--update-with-dependencies (-w):** Also update dependencies of the removed packages.
|
||||
(Deprecated, is now default behavior)
|
||||
* **--update-with-all-dependencies (-W):** Allows all inherited dependencies to be updated,
|
||||
|
|
Loading…
Reference in New Issue