Skip to content

Commit 5812cac

Browse files
Merge pull request #6 from wp-cli/clarify-bundled
Clarify this command as a bundled command
2 parents 09298a9 + f14a8b3 commit 5812cac

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ wp language core activate <language>
3434
Install a given language.
3535

3636
~~~
37-
wp language core install <language> [--activate]
37+
wp language core install <language>... [--activate]
3838
~~~
3939

4040
Downloads the language pack from WordPress.org.
4141

42-
<language>
42+
<language>...
4343
Language code to install.
4444

4545
[--activate]
@@ -107,10 +107,10 @@ These fields are optionally available:
107107
Uninstall a given language.
108108

109109
~~~
110-
wp language core uninstall <language>
110+
wp language core uninstall <language>...
111111
~~~
112112

113-
<language>
113+
<language>...
114114
Language code to uninstall.
115115

116116
**EXAMPLES**
@@ -146,9 +146,11 @@ Updates installed languages for core, plugins and themes.
146146

147147
## Installing
148148

149-
Installing this package requires WP-CLI v0.23.0 or greater. Update to the latest stable release with `wp cli update`.
149+
This package is included with WP-CLI itself, no additional installation necessary.
150+
151+
To install the latest version of this package over what's included in WP-CLI, run:
150152

151-
Once you've done so, you can install this package with `wp package install wp-cli/language-command`.
153+
wp package install [email protected]:wp-cli/language-command.git
152154

153155
## Contributing
154156

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
"psr-4": {
2121
"": "src/"
2222
},
23-
"files": [ "language-command.php" ]
23+
"files": [
24+
"language-command.php"
25+
]
2426
},
2527
"require": {},
2628
"require-dev": {
@@ -37,6 +39,7 @@
3739
"language core list",
3840
"language core uninstall",
3941
"language core update"
40-
]
42+
],
43+
"bundled": true
4144
}
4245
}

0 commit comments

Comments
 (0)