Update for ZF2 RC6
[zf2.biz/application_blanche.git] / README.md
index f3fd2fa..4e7d164 100644 (file)
--- a/README.md
+++ b/README.md
@@ -23,39 +23,11 @@ and use composer to install dependencies:
 
 Using Git submodules
 --------------------
-Alternatively, you can install using native git submodules. This method works fine but it is
-recommended that you use Composer due to the dependency management it provides.
+Alternatively, you can install using native git submodules:
 
     git clone git://github.com/zendframework/ZendSkeletonApplication.git --recursive
 
-You will also need to update public/index.php and modules/Application/Module.php to enable autoloading.
-For public/index.php, replace lines 2-13 with:
-
-    chdir(dirname(__DIR__));
-    require_once (getenv('ZF2_PATH') ?: 'vendor/ZendFramework/library') . '/Zend/Loader/AutoloaderFactory.php';
-
-    use Zend\Loader\AutoloaderFactory,
-        Zend\ServiceManager\ServiceManager,
-        Zend\Mvc\Service\ServiceManagerConfiguration;
-
-    // setup autoloader
-    AutoloaderFactory::factory();
-
-For modules/Application/Module.php add:
-
-    public function getAutoloaderConfig()
-    {
-        return array(
-            'Zend\Loader\ClassMapAutoloader' => array(
-                __DIR__ . '/autoload_classmap.php',
-            ),
-            'Zend\Loader\StandardAutoloader' => array(
-                'namespaces' => array(
-                    __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
-                ),
-            ),
-        );
-    }
-
+Virtual Host
+------------
 Afterwards, set up a virtual host to point to the public/ directory of the
-project and you should be ready to go!
\ No newline at end of file
+project and you should be ready to go!