diff --git a/docs/index.txt b/docs/index.txt index e4b613282..6c3a97406 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -5,7 +5,7 @@ MongoDB PHP Library .. default-domain:: mongodb The |php-library| provides a high-level abstraction around the lower-level -`PHP Driver `_, also known as the ``mongodb`` +`PHP driver `_, also known as the ``mongodb`` extension. While the ``mongodb`` extension provides a limited API for executing commands, @@ -18,11 +18,11 @@ collection management. If you are developing a PHP application with MongoDB, you should consider using this library, or another high-level abstraction, instead of the extension alone. -For additional information about the MongoDB PHP Library and the ``mongodb`` -extension, see the `Architecture Overview -`_ article in the extension -documentation. `Derick Rethans `_ has also written a -series of blog posts entitled *New MongoDB Drivers for PHP and HHVM*: +For additional information about this library and the ``mongodb`` extension, see +the `Architecture Overview `_ +article in the extension documentation. `Derick Rethans +`_ has also written a series of blog posts entitled +*New MongoDB Drivers for PHP and HHVM*: - `Part One: History `_ diff --git a/docs/tutorial/install-php-library.txt b/docs/tutorial/install-php-library.txt index 74cf0e46e..0c4098a0c 100644 --- a/docs/tutorial/install-php-library.txt +++ b/docs/tutorial/install-php-library.txt @@ -7,19 +7,13 @@ Install the |php-library| Prerequisites ------------- -The MongoDB PHP Library is a high-level abstraction for the -MongoDB PHP driver. As such, you must install the `mongodb` -extension to use the |php-library|: +The |php-library| is a high-level abstraction for the MongoDB PHP driver. As +such, you must install the `mongodb` extension to use the library. -.. code-block:: sh - - pecl install mongodb - echo "extension=mongodb.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` - -Instructions for installing the `mongodb` extension on HHVM may be -found in the :php:`Installation with HHVM -` article -in the driver documentation. +:php:`Installing the MongoDB PHP Driver ` +describes how to install the `mongodb` extension for PHP. Instructions for +installing the driver for HHVM may be found in the :php:`Installation with HHVM +` article. Procedure ---------