add new experimental environment cutlergyor

This commit is contained in:
Schneider Roland
2022-04-23 20:45:12 +02:00
parent 24d67f56d8
commit fb39d6599e
180 changed files with 3483 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
$params = array_merge(
require(__DIR__ . '/../../common/config/params.php'),
require(__DIR__ . '/../../common/config/params-local.php'),
require(__DIR__ . '/params.php'),
require(__DIR__ . '/params-local.php')
);
return [
'id' => 'app-console',
'basePath' => dirname(__DIR__),
'bootstrap' => ['log'],
'controllerNamespace' => 'console\controllers',
'components' => [
'log' => [
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning','info'],
],
],
],
],
'params' => $params,
];