mirror of
https://github.com/dg/dibi.git
synced 2025-02-24 02:43:09 +01:00
19 lines
406 B
PHP
19 lines
406 B
PHP
<?php
|
|
|
|
// The Nette Tester command-line runner can be
|
|
// invoked through the command: ../../vendor/bin/tester .
|
|
|
|
if (@!include __DIR__ . '/../../vendor/autoload.php') {
|
|
echo 'Install Nette Tester using `composer update --dev`';
|
|
exit(1);
|
|
}
|
|
|
|
|
|
// configure environment
|
|
Tester\Environment::setup();
|
|
date_default_timezone_set('Europe/Prague');
|
|
|
|
|
|
// load connections
|
|
$config = require __DIR__ . '/config.php';
|