yii2-netdisk/config/console.php

39 lines
878 B
PHP
Raw Normal View History

2013-05-24 22:14:49 +08:00
<?php
Yii::setAlias('tests', __DIR__ . '/../tests');
$params = require(__DIR__ . '/params.php');
2013-10-18 13:30:41 +08:00
return [
'id' => 'basic-console',
2013-05-24 22:14:49 +08:00
'basePath' => dirname(__DIR__),
2013-10-18 20:03:36 +08:00
'preload' => ['log'],
2013-05-24 22:14:49 +08:00
'controllerPath' => dirname(__DIR__) . '/commands',
'controllerNamespace' => 'app\commands',
2013-11-03 04:04:38 +08:00
'extensions' => require(__DIR__ . '/../vendor/yiisoft/extensions.php'),
2013-10-18 13:30:41 +08:00
'components' => [
'cache' => [
2013-05-24 22:14:49 +08:00
'class' => 'yii\caching\FileCache',
2013-10-18 13:30:41 +08:00
],
'log' => [
'targets' => [
[
2013-07-03 10:09:25 +08:00
'class' => 'yii\log\FileTarget',
2013-10-18 13:30:41 +08:00
'levels' => ['error', 'warning'],
],
],
],
'db' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=yii2basic',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
],
'fixture' => [
'class' => 'yii\test\DbFixtureManager',
'basePath' => '@tests/unit/fixtures',
],
2013-10-18 13:30:41 +08:00
],
'params' => $params,
2013-10-18 13:30:41 +08:00
];