index-test.php 358 Bytes
<?php
use Yaf\Application;

define('DOMAIN', 'buy.test.yoho.cn');
define('APPLICATION_PATH', dirname(__DIR__));
define('ROOT_PATH', dirname(dirname(APPLICATION_PATH)));
defined('APPLICATION_ENV') || define('APPLICATION_ENV', 'testing');

$application = new Application(APPLICATION_PATH . '/configs/application.testing.ini');
$application->bootstrap()->run();