Ensure the right version of the PHP AI Client is installed #122
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What?
Ensure the right version of the PHP AI Client is pulled in from the WP AI Client update
Why?
In #118, I updated our composer config to pull in the latest release of the WP AI Client package (0.1.1) instead of pulling in
trunk. This was supposed to pull in the latest release of the PHP AI Client (0.2.1) but it seems that just running thecomposer require wordpress/wp-ai-client:0.1.1command didn't pull in the downstream dependencies so it was still using the 0.2.0 release of that package.How?
Initially tried running
composer updateto bring in everything but there appears to be some conflicts with our PHPCS tools coming out of recent changes made to thedevelopbranch of thephpcompatibility/php-compatibilitypackage. So instead of trying to fix all of those, I rancomposer require wordpress/wp-ai-client:0.1.1 -Wto bring in the updated version of the PHP AI Client package (the-Wflag was the trick here)Testing Instructions
n/a