Skip to content

Commit 375c56c

Browse files
Introduce wp package for managing WP-CLI community commands
Use `wp package browse` to view all available community commands. Install a specific command with `wp package install <namespace/package-name>`. List all installed packages with `wp package list`. Or, uninstall a package with `wp package uninstall` Packages are installed to their own Composer project in `~/.wp-cli/packages`. This can be changed by setting a `WP_CLI_PACKAGES_DIR` environment variable.
1 parent 935afb8 commit 375c56c

10 files changed

Lines changed: 976 additions & 47 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
config.yml
22
/cache
3+
/packages
34
/vendor
45
/*.phar
56
/phpunit.xml.dist

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"symfony/dependency-injection": "2.7.*",
2424
"symfony/event-dispatcher": "2.7.*",
2525
"symfony/translation": "2.7.*",
26-
"nb/oxymel": "0.1.0"
26+
"nb/oxymel": "0.1.0",
27+
"composer/composer": "1.0.0-alpha11"
2728
},
2829
"require-dev": {
2930
"phpunit/phpunit": "3.7.*",

0 commit comments

Comments
 (0)