X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=public%2Findex.php;h=ece12223cf036b7a174fb54efa2d4aa0edc3f00f;hb=e9734534c5ac41e36317a2cbd30a1c924d86070f;hp=05f53328549c41136f629b10af6d5677952f75e1;hpb=c994772feb6fe02f60e7b875be37de9c64415882;p=zf2.biz%2Fgalerie.git diff --git a/public/index.php b/public/index.php index 05f5332..ece1222 100644 --- a/public/index.php +++ b/public/index.php @@ -1,22 +1,21 @@ getConfigListener()->addConfigGlobPath("config/autoload/*.php"); +// Composer autoloading +if (!include_once('vendor/autoload.php')) { + throw new RuntimeException('vendor/autoload.php could not be found. Did you run `php composer.phar install`?'); +} + +// Get application stack configuration +$configuration = include 'config/application.config.php'; -$moduleManager = new Zend\Module\Manager($appConfig['modules']); -$events = $moduleManager->events(); -$events->setSharedManager($sharedEvents); -$events->attach($defaultListeners); -$moduleManager->loadModules(); +// Setup service manager +$serviceManager = new ServiceManager(new ServiceManagerConfiguration($configuration['service_manager'])); +$serviceManager->setService('ApplicationConfiguration', $configuration); +$serviceManager->get('ModuleManager')->loadModules(); -// Create application, bootstrap, and run -$bootstrap = new Zend\Mvc\Bootstrap($defaultListeners->getConfigListener()->getMergedConfig()); -$bootstrap->events()->setSharedManager($sharedEvents); -$application = new Zend\Mvc\Application; -$bootstrap->bootstrap($application); -$application->run()->send(); +// Run application +$serviceManager->get('Application')->bootstrap()->run()->send();