From b945632dcf86311eb77cb07a2ff649f1c6600755 Mon Sep 17 00:00:00 2001 From: Francis Besset Date: Sun, 7 Aug 2011 11:34:00 +0200 Subject: [PATCH] [Doc] Updated installation --- Resources/doc/reference/installation.rst | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Resources/doc/reference/installation.rst b/Resources/doc/reference/installation.rst index 69b5d70..9711348 100644 --- a/Resources/doc/reference/installation.rst +++ b/Resources/doc/reference/installation.rst @@ -5,7 +5,7 @@ Requirements ------------ Install and enable PHP's SOAP extension -Download `Zend\Soap`_ or add in `deps` file +Download `Zend\\Soap`_ and `Zend\\Mime`_ or add in `deps` file .. code-block:: ini @@ -14,13 +14,17 @@ Download `Zend\Soap`_ or add in `deps` file git=http://github.com/BeSimple/zend-soap.git target=/zend-framework/library/Zend/Soap -Add Zend\Soap library in autoload.php + [Zend\Mime] + git=http://github.com/BeSimple/zend-mime.git + target=/zend-framework/library/Zend/Mime + +Add `Zend` library in autoload.php .. code-block:: php // app/autoload.php $loader->registerNamespaces(array( - 'ZendSoap' => __DIR__.'/../vendor/zend-framework/library', + 'Zend' => __DIR__.'/../vendor/zend-framework/library', // your other namespaces )); @@ -61,5 +65,6 @@ Add `BeSimpleSoapBundle` in your Kernel class } -.. _`Zend\Soap`: http://github.com/BeSimple/zend-soap -.. _`Download`: http://github.com/BeSimple/BeSimpleSoapBundle \ No newline at end of file +.. _`Zend\\Soap`: http://github.com/BeSimple/zend-soap +.. _`Zend\\Mime`: http://github.com/BeSimple/zend-mime +.. _`Download`: http://github.com/BeSimple/BeSimpleSoapBundle