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

Commit

Permalink
Use --no-dev when installing
Browse files Browse the repository at this point in the history
Otherwise the dev requirements *before they are rewritten by the installer* are
used.

Also provides a note detailing how to install the dev requirements after
installation.
  • Loading branch information
weierophinney committed Jan 19, 2016
1 parent 7627203 commit cf17bc2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ removed.
Start your new Expressive project with composer:

```bash
$ composer create-project zendframework/zend-expressive-skeleton <project-path>
$ composer create-project --no-dev zendframework/zend-expressive-skeleton <project-path>
```

> ### Release Candidates
Expand All @@ -39,9 +39,15 @@ $ composer create-project zendframework/zend-expressive-skeleton <project-path>
> To install a release candidate, use the following:
>
> ```bash
> $ composer create-project zendframework/zend-expressive-skeleton:^1.0@rc <project-path>
> $ composer create-project --no-dev "zendframework/zend-expressive-skeleton:^1.0@rc" <project-path>
> ```
> ### Development requirements
>
> If you want Composer to install the development requirements defined by the
> skeleton — specifically PHPUnit and PHP_CodeSniffer — run a `composer update`
> after installing the skeleton.
After choosing and installing the packages you want, go to the
`<project-path>` and start PHP's built-in web server to verify installation:
Expand Down

0 comments on commit cf17bc2

Please sign in to comment.