From 903b5b39c30a25a842258f8ae4a309ac04796d9d Mon Sep 17 00:00:00 2001 From: Frank Perez Date: Mon, 8 Dec 2014 10:01:03 -0500 Subject: [PATCH] Update text vendors to vendor on How to Define and Install Dependencies section. --- _posts/04-02-01-Composer-and-Packagist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/04-02-01-Composer-and-Packagist.md b/_posts/04-02-01-Composer-and-Packagist.md index 79bd1e1..23d33b4 100644 --- a/_posts/04-02-01-Composer-and-Packagist.md +++ b/_posts/04-02-01-Composer-and-Packagist.md @@ -49,7 +49,7 @@ Composer keeps track of your project's dependencies in a file called `composer.j composer require twig/twig:~1.8 -Alternatively the `composer init` command will guide you through creating a full `composer.json` file for your project. Either way, once you've created your `composer.json` file you can tell Composer to download and install your dependencies into the `vendors/` directory. This also applies to projects you've downloaded that already provide a `composer.json` file: +Alternatively the `composer init` command will guide you through creating a full `composer.json` file for your project. Either way, once you've created your `composer.json` file you can tell Composer to download and install your dependencies into the `vendor/` directory. This also applies to projects you've downloaded that already provide a `composer.json` file: composer install