| 123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Application configuration shared by all test types
- */
- return [
- [
- 'controllerMap' => [
- 'fixture' => [
- 'class' => 'yii\faker\FixtureController',
- 'fixtureDataPath' => '@tests/codeception/fixtures',
- 'templatePath' => '@tests/codeception/templates',
- 'namespace' => 'tests\codeception\fixtures',
- ],
- ],
- ],
- 'components' => [
- 'db' => [
- 'dsn' => 'mysql:host=localhost;dbname=yii2_basic_tests',
- ],
- 'mailer' => [
- 'useFileTransport' => true,
- ],
- 'urlManager' => [
- 'showScriptName' => true,
- ],
- ],
- ];
|