Skip to content

Commit fb8f7e0

Browse files
Merge pull request #22 from wp-cli/clarify-bundled
Clarify this command as a bundled command
2 parents d180ea7 + 7429dac commit fb8f7e0

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,11 @@ Uses `php -S` to launch a web server serving the WordPress webroot.
6262

6363
## Installing
6464

65-
Installing this package requires WP-CLI v0.23.0 or greater. Update to the latest stable release with `wp cli update`.
65+
This package is included with WP-CLI itself, no additional installation necessary.
6666

67-
Once you've done so, you can install this package with `wp package install wp-cli/server-command`.
67+
To install the latest version of this package over what's included in WP-CLI, run:
68+
69+
wp package install git@github.com:wp-cli/server-command.git
6870

6971
## Contributing
7072

composer.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
{
32
"name": "wp-cli/server-command",
43
"description": "Launch PHP's built-in web server for this specific WordPress installation.",
@@ -18,8 +17,12 @@
1817
"minimum-stability": "dev",
1918
"prefer-stable": true,
2019
"autoload": {
21-
"psr-4": { "": "src/" },
22-
"files": [ "server-command.php" ]
20+
"psr-4": {
21+
"": "src/"
22+
},
23+
"files": [
24+
"server-command.php"
25+
]
2326
},
2427
"require": {
2528
"wp-cli/wp-cli": "*"
@@ -33,6 +36,7 @@
3336
},
3437
"commands": [
3538
"server"
36-
]
39+
],
40+
"bundled": true
3741
}
3842
}

0 commit comments

Comments
 (0)