From 92ffcbf3b91e29aa4a261210a18b010e7f8e6588 Mon Sep 17 00:00:00 2001 From: Daniel Bachhuber Date: Tue, 30 May 2017 11:38:24 -0700 Subject: [PATCH] Clarify this command as a bundled command --- README.md | 6 ++++-- composer.json | 7 +++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8ac704453..eafdc83b1 100644 --- a/README.md +++ b/README.md @@ -114,9 +114,11 @@ change primary key values. ## Installing -Installing this package requires WP-CLI v0.23.0 or greater. Update to the latest stable release with `wp cli update`. +This package is included with WP-CLI itself, no additional installation necessary. -Once you've done so, you can install this package with `wp package install wp-cli/search-replace-command`. +To install the latest version of this package over what's included in WP-CLI, run: + + wp package install git@github.com:wp-cli/search-replace-command.git ## Contributing diff --git a/composer.json b/composer.json index 2d04f420b..1570f9a1c 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,9 @@ "": "src/", "WP_CLI\\": "src/WP_CLI" }, - "files": [ "search-replace-command.php" ] + "files": [ + "search-replace-command.php" + ] }, "require": { "wp-cli/wp-cli": "*" @@ -35,6 +37,7 @@ }, "commands": [ "search-replace" - ] + ], + "bundled": true } }