Skip to content

Use wildcard as version constraint #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Draft
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
4 changes: 2 additions & 2 deletions docs/installation-setup/cli-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The QIT Command Line Interface (CLI) is your primary tool for running tests loca
By installing the QIT CLI globally, you can access it from any project directory on your system. This approach simplifies your workflow if you work on multiple extensions or projects.

1. Install QIT CLI globally:
`composer global require woocommerce/qit-cli`
`composer global require "woocommerce/qit-cli:*"`

2. Ensure the Composer global `bin` directory is in your `PATH`. For example:
`export PATH="$PATH:$HOME/.composer/vendor/bin"`
Expand All @@ -32,7 +32,7 @@ By installing the QIT CLI globally, you can access it from any project directory

To update the QIT CLI when installed globally via Composer:

`composer global update woocommerce/qit-cli`
`composer global update "woocommerce/qit-cli:*"`

This will fetch and install the latest version, ensuring you always have the newest features and fixes.

Expand Down