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

Commit 14e34f7

Browse files
committed
Removed --no-dev flag for create-project invocation
No longer necessary as of zendframework/zend-expressive-skeleton#64
1 parent b1a50dc commit 14e34f7

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ also provides configuration for officially supported dependencies.
3636
To use the skeleton, use Composer's `create-project` command:
3737

3838
```bash
39-
$ composer create-project --no-dev -s rc zendframework/zend-expressive-skeleton <project dir>
39+
$ composer create-project -s rc zendframework/zend-expressive-skeleton <project dir>
4040
```
4141

4242
This will prompt you through choosing your dependencies, and then create and

doc/book/quick-start-skeleton.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ renderer, and error handler from the outset.
1111
First, we'll create a new project, using Composer's `create-project` command:
1212

1313
```bash
14-
$ composer create-project --no-dev -s rc zendframework/zend-expressive-skeleton expressive
14+
$ composer create-project -s rc zendframework/zend-expressive-skeleton expressive
1515
```
1616

1717
> ### Stability
@@ -20,12 +20,6 @@ $ composer create-project --no-dev -s rc zendframework/zend-expressive-skeleton
2020
> to recognize the version as installable, you must pass the `-s rc` flag,
2121
> indicating it should use packages of RC stability.
2222
23-
> ### Development requirements
24-
>
25-
> If you wish to use the development requirements as defined in the skeleton
26-
> (specifically, PHPUnit and PHP_CodeSniffer), you will need to run a
27-
> `composer update` after installation.
28-
2923
This will prompt you to choose:
3024

3125
- A router. We recommend using the default, FastRoute.

0 commit comments

Comments
 (0)