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

18 lines
355 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 [
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
];