Ejemplo n.º 1
0
<?php

chdir(dirname(__DIR__));
require_once (getenv('ZF2_PATH') ?: 'vendor/ZendFramework/library') . '/Zend/Loader/AutoloaderFactory.php';
Zend\Loader\AutoloaderFactory::factory();
$appConfig = (include 'config/application.config.php');
$sharedEvents = new Zend\EventManager\SharedEventManager();
$listenerOptions = new Zend\Module\Listener\ListenerOptions($appConfig['module_listener_options']);
$defaultListeners = new Zend\Module\Listener\DefaultListenerAggregate($listenerOptions);
$defaultListeners->getConfigListener()->addConfigGlobPath("config/autoload/*.php");
$moduleManager = new Zend\Module\Manager($appConfig['modules']);
$events = $moduleManager->events();
$events->setSharedManager($sharedEvents);
$events->attach($defaultListeners);
$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();
Ejemplo n.º 2
0
<?php

chdir(__DIR__);
$path = dirname(__DIR__);
require_once "{$path}/vendor/ZendFramework/library/Zend/Loader/AutoloaderFactory.php";
Zend\Loader\AutoloaderFactory::factory();
$appConfig = (include "{$path}/config/application.config.php");
$listenerOptions = new Zend\Module\Listener\ListenerOptions($appConfig['module_listener_options']);
$defaultListeners = new Zend\Module\Listener\DefaultListenerAggregate($listenerOptions);
$defaultListeners->getConfigListener()->addConfigGlobPath("{$path}/config/autoload/*.config.php");
$moduleManager = new Zend\Module\Manager($appConfig['modules']);
$moduleManager->events()->attachAggregate($defaultListeners);
$moduleManager->loadModules();
// Create application, bootstrap, and run
$bootstrap = new Zend\Mvc\Bootstrap($defaultListeners->getConfigListener()->getMergedConfig());
$application = new Zend\Mvc\Application();
$bootstrap->bootstrap($application);
$application->run()->send();
Ejemplo n.º 3
0
<?php

require_once __DIR__ . '/../autoload_register.php';
$rootPath = realpath(dirname(__DIR__));
$testsPath = "{$rootPath}/tests";
$path = array($testsPath, realpath(__DIR__ . '/../../../library/ZendFramework/library'), get_include_path());
set_include_path(implode(PATH_SEPARATOR, $path));
require_once 'Zend/Loader/AutoloaderFactory.php';
\Zend\Loader\AutoloaderFactory::factory(array('Zend\\Loader\\StandardAutoloader' => array()));
$moduleLoader = new \Zend\Loader\ModuleAutoloader(array(realpath(__DIR__ . '/../..'), realpath(__DIR__ . '/../../..')));
$moduleLoader->register();
$moduleManager = new \Zend\Module\Manager(array('SpiffyDoctrine', 'Application', 'Gists'));
$moduleManager->loadModules();
$mergedConfig = $moduleManager->getMergedConfig()->toArray();
// you can setup sqlite database for testing
// right now I use single mysql database for tests
/*
$config = &$mergedConfig['di']['instance']['doctrine']['parameters'];
$config['conn'] = array(
    'driver' => 'pdo_sqlite',
    'path'   => __DIR__ . '/test-db'
);
//*/
// test case in turn setups (and exposes) service locator, entity manager etc
\GistsTest\Framework\TestCase::$config = $mergedConfig;
unset($config, $mergedConfig, $moduleManager, $path, $testsPath, $rootPath);