From 70d12fc57aa3ea3b94b1b8ff8efdf8b7e0543988 Mon Sep 17 00:00:00 2001 From: "Jonathan H. Wage" Date: Sun, 8 Aug 2010 12:21:03 -0500 Subject: [PATCH] [DDC-663] Making example for installing via pear more generic. --- manual/en/introduction.txt | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/manual/en/introduction.txt b/manual/en/introduction.txt index 07d51c480..913525c68 100644 --- a/manual/en/introduction.txt +++ b/manual/en/introduction.txt @@ -77,17 +77,24 @@ line installation utility. To install just the `Common` package you can run the following command: - $ sudo pear install pear.doctrine-project.org/DoctrineCommon-2.0.0 + $ sudo pear install pear.doctrine-project.org/DoctrineCommon- If you want to use the Doctrine Database Abstraction Layer you can install it with the following command. - $ sudo pear install pear.doctrine-project.org/DoctrineDBAL-2.0.0 + $ sudo pear install pear.doctrine-project.org/DoctrineDBAL- Or, if you want to get the works and go for the ORM you can install it with the following command. - $ sudo pear install pear.doctrine-project.org/DoctrineORM-2.0.0 + $ sudo pear install pear.doctrine-project.org/DoctrineORM- + +> **NOTE** +> The `` tag above represents the version you want to install. For example the +> current version at the time of writing this is `2.0.0BETA3` for the ORM, so you could +> install it like the following: +> +> $ sudo pear install pear.doctrine-project.org/DoctrineORM-2.0.0BETA3 When you have a package installed via PEAR you can require and load the `ClassLoader` with the following code.