From 389a98a806efc03af6c9cbecdfa6c064abf6b953 Mon Sep 17 00:00:00 2001 From: Sacha Durand Date: Fri, 14 Feb 2020 03:11:33 +0100 Subject: [PATCH] Update 00-intro.md --- doc/00-intro.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/00-intro.md b/doc/00-intro.md index 067e89061..87b1a9ca3 100644 --- a/doc/00-intro.md +++ b/doc/00-intro.md @@ -19,13 +19,14 @@ This idea is not new and Composer is strongly inspired by node's Suppose: 1. You have a project that depends on a number of libraries. -1. Some of those libraries depend on other libraries. +2. Some of those libraries depend on other libraries. Composer: 1. Enables you to declare the libraries you depend on. -1. Finds out which versions of which packages can and need to be installed, and +2. Finds out which versions of which packages can and need to be installed, and installs them (meaning it downloads them into your project). +3. you can update all your dependencies in one command. See the [Basic usage](01-basic-usage.md) chapter for more details on declaring dependencies.