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
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ for future authorization requests.
Lists installed WP-CLI packages.

~~~
wp package list [--fields=<fields>] [--format=<format>]
wp package list [--fields=<fields>] [--format=<format>] [--skip-update-check]
~~~

**OPTIONS**
Expand All @@ -209,6 +209,9 @@ wp package list [--fields=<fields>] [--format=<format>]
- yaml
---

[--skip-update-check]
Skip checking for updates. This is faster and avoids authentication issues with GitHub or Composer repositories.

**AVAILABLE FIELDS**

These fields will be displayed by default for each package:
Expand All @@ -233,6 +236,14 @@ These fields are optionally available:
| wp-cli/server-command | Daniel Bachhuber | dev-main | available | 2.x-dev |
+-----------------------+------------------+----------+-----------+----------------+

# List installed packages without checking for updates.
$ wp package list --skip-update-check
+-----------------------+------------------+----------+--------+----------------+
| name | authors | version | update | update_version |
+-----------------------+------------------+----------+--------+----------------+
| wp-cli/server-command | Daniel Bachhuber | dev-main | none | |
+-----------------------+------------------+----------+--------+----------------+



### wp package update
Expand Down