parent
55990a48a9
commit
9b6d27f810
|
@ -194,7 +194,7 @@ and this feature is only available for your root package dependencies.
|
|||
* **--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. 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.
|
||||
* **--no-audit:** Does not run the audit steps after updating the composer.lock file. Also see [COMPOSER_NO_AUDIT](#composer-no-audit).
|
||||
* **--audit-format:** Audit output format. Must be "table", "plain", "json", or "summary" (default).
|
||||
* **--lock:** Only updates the lock file hash to suppress warning about the
|
||||
lock file being out of date.
|
||||
|
@ -269,7 +269,7 @@ If you do not specify a package, Composer will prompt you to search for a packag
|
|||
terminals or scripts which don't handle backspace characters.
|
||||
* **--no-update:** Disables the automatic update of the dependencies (implies --no-install).
|
||||
* **--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.
|
||||
* **--no-audit:** Does not run the audit steps after updating the composer.lock file. Also see [COMPOSER_NO_AUDIT](#composer-no-audit).
|
||||
* **--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. 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.
|
||||
|
@ -315,7 +315,7 @@ uninstalled.
|
|||
terminals or scripts which don't handle backspace characters.
|
||||
* **--no-update:** Disables the automatic update of the dependencies (implies --no-install).
|
||||
* **--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.
|
||||
* **--no-audit:** Does not run the audit steps after installation is complete. Also see [COMPOSER_NO_AUDIT](#composer-no-audit).
|
||||
* **--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. Also see [COMPOSER_NO_DEV](#composer-no-dev).
|
||||
* **--update-with-dependencies (-w):** Also update dependencies of the removed packages.
|
||||
|
@ -902,7 +902,7 @@ By default the command checks for the packages on packagist.org.
|
|||
mode.
|
||||
* **--remove-vcs:** Force-remove the VCS metadata without prompting.
|
||||
* **--no-install:** Disables installation of the vendors.
|
||||
* **--no-audit:** Does not run the audit steps after installation is complete.
|
||||
* **--no-audit:** Does not run the audit steps after installation is complete. Also see [COMPOSER_NO_AUDIT](#composer-no-audit).
|
||||
* **--audit-format:** Audit output format. Must be "table", "plain", "json", or "summary" (default).
|
||||
* **--ignore-platform-reqs:** ignore all platform requirements (`php`, `hhvm`,
|
||||
`lib-*` and `ext-*`) and force the installation even if the local machine does
|
||||
|
@ -1245,6 +1245,10 @@ fully offline with `1`.
|
|||
If set to `1`, outputs information about events being dispatched, which can be
|
||||
useful for plugin authors to identify what is firing when exactly.
|
||||
|
||||
### COMPOSER_NO_AUDIT
|
||||
|
||||
If set to `1`, it is the equivalent of passing the `--no-audit` option to `require`, `update`, `remove` or `create-project` command.
|
||||
|
||||
### COMPOSER_NO_DEV
|
||||
|
||||
If set to `1`, it is the equivalent of passing the `--no-dev` option to `install` or
|
||||
|
|
|
@ -244,6 +244,7 @@ abstract class BaseCommand extends Command
|
|||
}
|
||||
|
||||
$envOptions = [
|
||||
'COMPOSER_NO_AUDIT' => ['no-audit'],
|
||||
'COMPOSER_NO_DEV' => ['no-dev', 'update-no-dev'],
|
||||
'COMPOSER_PREFER_STABLE' => ['prefer-stable'],
|
||||
'COMPOSER_PREFER_LOWEST' => ['prefer-lowest'],
|
||||
|
|
|
@ -93,7 +93,7 @@ class CreateProjectCommand extends BaseCommand
|
|||
new InputOption('keep-vcs', null, InputOption::VALUE_NONE, 'Whether to prevent deleting the vcs folder.'),
|
||||
new InputOption('remove-vcs', null, InputOption::VALUE_NONE, 'Whether to force deletion of the vcs folder without prompting.'),
|
||||
new InputOption('no-install', null, InputOption::VALUE_NONE, 'Whether to skip installation of the package dependencies.'),
|
||||
new InputOption('no-audit', null, InputOption::VALUE_NONE, 'Whether to skip auditing of the installed package dependencies.'),
|
||||
new InputOption('no-audit', null, InputOption::VALUE_NONE, 'Whether to skip auditing of the installed package dependencies (can also be set via the COMPOSER_NO_AUDIT=1 env var).'),
|
||||
new InputOption('audit-format', null, InputOption::VALUE_REQUIRED, 'Audit output format. Must be "table", "plain", "json" or "summary".', Auditor::FORMAT_SUMMARY, Auditor::FORMATS),
|
||||
new InputOption('ignore-platform-req', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Ignore a specific platform requirement (php & ext- packages).'),
|
||||
new InputOption('ignore-platform-reqs', null, InputOption::VALUE_NONE, 'Ignore all platform requirements (php & ext- packages).'),
|
||||
|
|
|
@ -50,7 +50,7 @@ class RemoveCommand extends BaseCommand
|
|||
new InputOption('no-progress', null, InputOption::VALUE_NONE, 'Do not output download progress.'),
|
||||
new InputOption('no-update', null, InputOption::VALUE_NONE, 'Disables the automatic update of the dependencies (implies --no-install).'),
|
||||
new InputOption('no-install', null, InputOption::VALUE_NONE, 'Skip the install step after updating the composer.lock file.'),
|
||||
new InputOption('no-audit', null, InputOption::VALUE_NONE, 'Skip the audit step after updating the composer.lock file.'),
|
||||
new InputOption('no-audit', null, InputOption::VALUE_NONE, 'Skip the audit step after updating the composer.lock file (can also be set via the COMPOSER_NO_AUDIT=1 env var).'),
|
||||
new InputOption('audit-format', null, InputOption::VALUE_REQUIRED, 'Audit output format. Must be "table", "plain", "json", or "summary".', Auditor::FORMAT_SUMMARY, Auditor::FORMATS),
|
||||
new InputOption('update-no-dev', null, InputOption::VALUE_NONE, 'Run the dependency update with the --no-dev option.'),
|
||||
new InputOption('update-with-dependencies', 'w', InputOption::VALUE_NONE, 'Allows inherited dependencies to be updated with explicit dependencies. (Deprecrated, is now default behavior)'),
|
||||
|
|
|
@ -85,7 +85,7 @@ class RequireCommand extends BaseCommand
|
|||
new InputOption('no-progress', null, InputOption::VALUE_NONE, 'Do not output download progress.'),
|
||||
new InputOption('no-update', null, InputOption::VALUE_NONE, 'Disables the automatic update of the dependencies (implies --no-install).'),
|
||||
new InputOption('no-install', null, InputOption::VALUE_NONE, 'Skip the install step after updating the composer.lock file.'),
|
||||
new InputOption('no-audit', null, InputOption::VALUE_NONE, 'Skip the audit step after updating the composer.lock file.'),
|
||||
new InputOption('no-audit', null, InputOption::VALUE_NONE, 'Skip the audit step after updating the composer.lock file (can also be set via the COMPOSER_NO_AUDIT=1 env var).'),
|
||||
new InputOption('audit-format', null, InputOption::VALUE_REQUIRED, 'Audit output format. Must be "table", "plain", "json", or "summary".', Auditor::FORMAT_SUMMARY, Auditor::FORMATS),
|
||||
new InputOption('update-no-dev', null, InputOption::VALUE_NONE, 'Run the dependency update with the --no-dev option.'),
|
||||
new InputOption('update-with-dependencies', 'w', InputOption::VALUE_NONE, 'Allows inherited dependencies to be updated, except those that are root requirements.'),
|
||||
|
|
|
@ -61,7 +61,7 @@ class UpdateCommand extends BaseCommand
|
|||
new InputOption('no-dev', null, InputOption::VALUE_NONE, 'Disables installation of require-dev packages.'),
|
||||
new InputOption('lock', null, InputOption::VALUE_NONE, 'Overwrites the lock file hash to suppress warning about the lock file being out of date without updating package versions. Package metadata like mirrors and URLs are updated if they changed.'),
|
||||
new InputOption('no-install', null, InputOption::VALUE_NONE, 'Skip the install step after updating the composer.lock file.'),
|
||||
new InputOption('no-audit', null, InputOption::VALUE_NONE, 'Skip the audit step after updating the composer.lock file.'),
|
||||
new InputOption('no-audit', null, InputOption::VALUE_NONE, 'Skip the audit step after updating the composer.lock file (can also be set via the COMPOSER_NO_AUDIT=1 env var).'),
|
||||
new InputOption('audit-format', null, InputOption::VALUE_REQUIRED, 'Audit output format. Must be "table", "plain", "json", or "summary".', Auditor::FORMAT_SUMMARY, Auditor::FORMATS),
|
||||
new InputOption('no-autoloader', null, InputOption::VALUE_NONE, 'Skips autoloader generation'),
|
||||
new InputOption('no-suggest', null, InputOption::VALUE_NONE, 'DEPRECATED: This flag does not exist anymore.'),
|
||||
|
|
Loading…
Reference in New Issue