From f5f6e5eaac9fbcc56a8f324e1c109e509304f663 Mon Sep 17 00:00:00 2001 From: dmoreaulf Date: Fri, 23 May 2014 10:05:00 +0200 Subject: [PATCH] adding doc entry for composer/satis's PR 118 https://github.com/composer/satis/pull/118/commits --- doc/articles/handling-private-packages-with-satis.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/articles/handling-private-packages-with-satis.md b/doc/articles/handling-private-packages-with-satis.md index 69da38196..4e6aa59b8 100644 --- a/doc/articles/handling-private-packages-with-satis.md +++ b/doc/articles/handling-private-packages-with-satis.md @@ -192,9 +192,12 @@ to your `satis.json`: ```json { - "require-dependencies": true + "require-dependencies": true, + "require-dev-dependencies": true } ``` When searching for packages, satis will attempt to resolve all the required packages from the listed repositories. Therefore, if you are requiring a package from Packagist, you will need to define it in your `satis.json`. + +Dev dependencies are packaged only if the `require-dev-dependencies` parameter is set to true.