mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-28 02:41:37 +01:00
20 lines
386 B
PHP
20 lines
386 B
PHP
|
|
<?php
|
||
|
|
/*
|
||
|
|
* This file is part of the Smarty PHPUnit tests.
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
/*
|
||
|
|
* Smarty PHPUnit Bootstrap
|
||
|
|
*/
|
||
|
|
require_once dirname(__FILE__) . '/Config.php';
|
||
|
|
require_once dirname(__FILE__) . '/../vendor/autoload.php';
|
||
|
|
require_once dirname(__FILE__) . '/../libs/bootstrap.php';
|
||
|
|
|
||
|
|
require_once 'PHPUnit_Smarty.php';
|
||
|
|
if (!ini_get('date.timezone')) {
|
||
|
|
ini_set('date.timezone', 'Europe/Berlin');
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|