Skip to content

Commit

Permalink
Merge pull request #15 from wp-cli/clarify-bundled
Browse files Browse the repository at this point in the history
Clarify this command as a bundled command
  • Loading branch information
danielbachhuber authored May 30, 2017
2 parents 03337e8 + f33d51f commit 1163c1e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,11 @@ wp package uninstall <name>

## 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/package-command`.
To install the latest version of this package over what's included in WP-CLI, run:

wp package install [email protected]:wp-cli/package-command.git

## Contributing

Expand Down
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {"": "src/"},
"files": [ "package-command.php" ]
"psr-4": {
"": "src/"
},
"files": [
"package-command.php"
]
},
"require": {
"wp-cli/wp-cli": "*",
Expand All @@ -37,6 +41,7 @@
"package list",
"package update",
"package uninstall"
]
],
"bundled": true
}
}

0 comments on commit 1163c1e

Please sign in to comment.