You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
740 B
27 lines
740 B
5 years ago
|
<?php
|
||
|
/**
|
||
|
* Application configuration shared by all applications and test types
|
||
|
*/
|
||
|
return [
|
||
|
'language' => 'en-US',
|
||
|
'controllerMap' => [
|
||
|
'fixture' => [
|
||
|
'class' => 'yii\faker\FixtureController',
|
||
|
'fixtureDataPath' => '@tests/codeception/common/fixtures/data',
|
||
|
'templatePath' => '@tests/codeception/common/templates/fixtures',
|
||
|
'namespace' => 'tests\codeception\common\fixtures',
|
||
|
],
|
||
|
],
|
||
|
'components' => [
|
||
|
'db' => [
|
||
|
'dsn' => 'mysql:host=localhost;dbname=yii2_advanced_tests',
|
||
|
],
|
||
|
'mailer' => [
|
||
|
'useFileTransport' => true,
|
||
|
],
|
||
|
'urlManager' => [
|
||
|
'showScriptName' => true,
|
||
|
],
|
||
|
],
|
||
|
];
|