Skip to content
This repository was archived by the owner on Jan 1, 2020. It is now read-only.

Commit 4030857

Browse files
committed
Added notes about composer serve in README.md
1 parent fcd152c commit 4030857

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@ $ composer create-project -sdev zendframework/skeleton-application path/to/insta
2121
Once installed, you can test it out immediately using PHP's built-in web server:
2222

2323
```bash
24+
$ cd path/to/install
2425
$ php -S 0.0.0.0:8080 -t public/ public/index.php
26+
# OR use the composer alias:
27+
$ composer serve
2528
```
2629

2730
This will start the cli-server on port 8080, and bind it to all network
28-
interfaces.
31+
interfaces. You can then visit the site at http://localhost:8080/
32+
- which will bring up Zend Framework welcome page.
2933

3034
**Note:** The built-in CLI server is *for development only*.
3135

0 commit comments

Comments
 (0)