yii2-netdisk/tests/codeception/config/config.php

28 lines
703 B
PHP
Raw Normal View History

2013-12-30 22:22:18 +08:00
<?php
/**
2014-08-17 22:45:58 +08:00
* Application configuration shared by all test types
2013-12-30 22:22:18 +08:00
*/
return [
[
'controllerMap' => [
'fixture' => [
'class' => 'yii\faker\FixtureController',
'fixtureDataPath' => '@tests/codeception/fixtures',
'templatePath' => '@tests/codeception/templates',
'namespace' => 'tests\codeception\fixtures',
],
],
],
2014-03-16 12:46:16 +08:00
'components' => [
'db' => [
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_tests',
],
2014-06-26 22:28:57 +08:00
'mailer' => [
2014-03-16 12:46:16 +08:00
'useFileTransport' => true,
],
'urlManager' => [
'showScriptName' => true,
],
],
2013-12-30 22:22:18 +08:00
];