Further require updates
[zf2.biz/application_blanche.git] / public / index.php
1 <?php
2 /**
3  * This makes our life easier when dealing with paths. Everything is relative
4  * to the application root now.
5  */
6 chdir(dirname(__DIR__));
7
8 // Setup autoloading
9 require 'init_autoloader.php';
10
11 // Run the application!
12 Zend\Mvc\Application::init(require 'config/application.config.php')->run();