From b5906acc19566c717c7b01dde1c715f394d53b72 Mon Sep 17 00:00:00 2001 From: Danny Painter Date: Sat, 19 Sep 2026 18:12:16 +0100 Subject: [PATCH] Add entity-command to the composer requires The URL replace task runs wp option update, which comes from wp-cli/entity-command. On a composer install of the plugin the option command isn't registered, so both option updates error mid-sync (the search-replace calls are fine, as search-replace-command is already required). A global WP-CLI bundle install never hits this, which is probably why it went unnoticed. --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index a8a1be4..0f0a240 100644 --- a/composer.json +++ b/composer.json @@ -15,6 +15,7 @@ "require": { "wp-cli/wp-cli": "^2.8", "wp-cli/db-command": "^2.0", + "wp-cli/entity-command": "^2.0", "wp-cli/extension-command": "^2.1", "wp-cli/maintenance-mode-command": "^2.0", "wp-cli/search-replace-command": "^2.0"