Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ These fields are optionally available:
Installs a WP-CLI package.

~~~
wp package install <name|git|path|zip> [--insecure]
wp package install <name|git|path|zip> [--insecure] [--interaction]
~~~

Packages are required to be a valid Composer package, and can be
Expand Down Expand Up @@ -232,6 +232,9 @@ for future authorization requests.
[--insecure]
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.

[--interaction]
Control interactive mode. Use `--no-interaction` to disable prompts (interactive by default). Useful for scripting.

**EXAMPLES**

# Install a package hosted at a git URL.
Expand Down Expand Up @@ -370,12 +373,15 @@ If you want to contribute to a package, this is a great way to jump to it.
Updates installed WP-CLI packages to their latest version.

~~~
wp package update [<package-name>...]
wp package update [<package-name>...] [--interaction]
~~~

[<package-name>...]
One or more package names to update. If not specified, all packages will be updated.

[--interaction]
Control interactive mode. Use `--no-interaction` to disable prompts (interactive by default). Useful for scripting.

**EXAMPLES**

# Update all packages.
Expand Down Expand Up @@ -411,7 +417,7 @@ wp package update [<package-name>...]
Uninstalls a WP-CLI package.

~~~
wp package uninstall <name> [--insecure]
wp package uninstall <name> [--insecure] [--interaction]
~~~

**OPTIONS**
Expand All @@ -422,6 +428,9 @@ wp package uninstall <name> [--insecure]
[--insecure]
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.

[--interaction]
Control interactive prompts. Use `--no-interaction` to disable interactive questions (useful for scripting).

**EXAMPLES**

# Uninstall package.
Expand Down