10 lines
249 B
PHP
10 lines
249 B
PHP
<?php
|
|
// Configuration for koharness - builds a standalone skeleton Kohana app for running unit tests
|
|
return array(
|
|
'kohana_version' => '3.3',
|
|
'modules' => array(
|
|
'cache' => __DIR__,
|
|
'unittest' => __DIR__ . '/vendor/kohana/unittest'
|
|
),
|
|
);
|