File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -62,9 +62,11 @@ Uses `php -S` to launch a web server serving the WordPress webroot.
62
62
63
63
## Installing
64
64
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 .
66
66
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
68
70
69
71
## Contributing
70
72
Original file line number Diff line number Diff line change 1
-
2
1
{
3
2
"name" : " wp-cli/server-command" ,
4
3
"description" : " Launch PHP's built-in web server for this specific WordPress installation." ,
18
17
"minimum-stability" : " dev" ,
19
18
"prefer-stable" : true ,
20
19
"autoload" : {
21
- "psr-4" : { "" : " src/" },
22
- "files" : [ " server-command.php" ]
20
+ "psr-4" : {
21
+ "" : " src/"
22
+ },
23
+ "files" : [
24
+ " server-command.php"
25
+ ]
23
26
},
24
27
"require" : {
25
28
"wp-cli/wp-cli" : " *"
33
36
},
34
37
"commands" : [
35
38
" server"
36
- ]
39
+ ],
40
+ "bundled" : true
37
41
}
38
42
}
You can’t perform that action at this time.
0 commit comments