'basic', 'basePath' => __DIR__, 'components' => [ 'db' => [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=tfb-database;dbname=hello_world', 'username' => 'benchmarkdbuser', 'password' => 'benchmarkdbpass', 'charset' => 'utf8', 'attributes' => [ PDO::ATTR_PERSISTENT => true, ], 'enableLogging' => false, 'enableProfiling' => false, 'enableSchemaCache' => true, 'schemaCache' => 'cache', 'schemaCacheDuration' => 3600, ], 'cache' => [ 'class' => 'yii\caching\FileCache', 'cachePath' => '/tmp/yii2-cache', ], 'urlManager' => [ 'enablePrettyUrl' => true, ], ], ]; (new yii\web\Application($config))->run();