From cd27cb1a95e94d5cfa4507bde18da48316445c9f Mon Sep 17 00:00:00 2001 From: Kat Date: Wed, 31 Jan 2018 14:38:48 +0000 Subject: [PATCH 1/2] Correct a tiny typo `project b's` should be `project a's` in the example given --- doc/articles/vendor-binaries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/articles/vendor-binaries.md b/doc/articles/vendor-binaries.md index 9e678a950..ded1aa5f8 100644 --- a/doc/articles/vendor-binaries.md +++ b/doc/articles/vendor-binaries.md @@ -66,7 +66,7 @@ Say project `my-vendor/project-b` has requirements setup like this: ``` Running `composer install` for this `composer.json` will look at -all of project-b's dependencies and install them to `vendor/bin`. +all of project-a's dependencies and install them to `vendor/bin`. In this case, Composer will make `vendor/my-vendor/project-a/bin/project-a-bin` available as `vendor/bin/project-a-bin`. On a Unix-like platform From a34f88cb018488e5b10501692a2babd3e61564d8 Mon Sep 17 00:00:00 2001 From: Kat Date: Thu, 1 Feb 2018 14:43:38 +0000 Subject: [PATCH 2/2] Change `dependencies` to `binaries` --- doc/articles/vendor-binaries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/articles/vendor-binaries.md b/doc/articles/vendor-binaries.md index ded1aa5f8..0022b90b9 100644 --- a/doc/articles/vendor-binaries.md +++ b/doc/articles/vendor-binaries.md @@ -66,7 +66,7 @@ Say project `my-vendor/project-b` has requirements setup like this: ``` Running `composer install` for this `composer.json` will look at -all of project-a's dependencies and install them to `vendor/bin`. +all of project-a's binaries and install them to `vendor/bin`. In this case, Composer will make `vendor/my-vendor/project-a/bin/project-a-bin` available as `vendor/bin/project-a-bin`. On a Unix-like platform