phpci/Tests/bootstrap.php

44 lines
1.2 KiB
PHP
Raw Permalink Normal View History

<?php
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2013, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link http://www.phptesting.org/
*/
// Let PHP take a guess as to the default timezone, if the user hasn't set one:
date_default_timezone_set(@date_default_timezone_get());
// Load Composer autoloader:
require_once(dirname(__DIR__) . '/vendor/autoload.php');
2014-12-08 16:09:57 +01:00
// If the PHPCI config file is not where we expect it, try looking in
// env for an alternative config path.
2015-02-03 11:43:44 +01:00
$configFile = dirname(__FILE__) . '/../PHPCI/config.yml';
2014-12-08 16:09:57 +01:00
if (!file_exists($configFile)) {
$configEnv = getenv('phpci_config_file');
if (!empty($configEnv)) {
$configFile = $configEnv;
}
}
2014-12-25 22:20:11 +01:00
// Load configuration if present:
$conf = array();
$conf['b8']['app']['namespace'] = 'PHPCI';
$conf['b8']['app']['default_controller'] = 'Home';
$conf['b8']['view']['path'] = dirname(__DIR__) . '/PHPCI/View/';
$config = new b8\Config($conf);
2014-12-08 16:09:57 +01:00
if (file_exists($configFile)) {
$config->loadYaml($configFile);
}
require_once(dirname(__DIR__) . '/vars.php');
2014-12-08 16:04:44 +01:00
\PHPCI\Helper\Lang::init($config);
\PHPCI\Helper\Lang::setLanguage("en");