array())); $appConfig = include __DIR__ . '/../configs/application.config.php'; $moduleLoader = new Zend\Loader\ModuleAutoloader($appConfig['module_paths']); $moduleLoader->register(); $moduleManager = new Zend\Module\Manager( $appConfig['modules'], new Zend\Module\ManagerOptions($appConfig['module_manager_options']) ); // Create application, bootstrap, and run $bootstrap = new Zend\Mvc\Bootstrap($moduleManager); $application = new Zend\Mvc\Application; $bootstrap->bootstrap($application); $application->run()->send();