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