Initial import

This commit is contained in:
Admin Nasledstvo
2026-05-01 20:52:04 +03:00
commit ac168868ee
10028 changed files with 2337954 additions and 0 deletions
@@ -0,0 +1,17 @@
<?php
$host = '127.0.0.1';
$user = 'root';
$password = '';
$database = 'phplist';
return [
'class' => 'yii\db\Connection',
'dsn' => "mysql:host=$host;dbname=".$database,
'username' => $user,
'password' => $password,
'charset' => 'utf8',
'attributes' => [PDO::ATTR_CASE => PDO::CASE_LOWER],
// Schema cache options (for production environment)
//'enableSchemaCache' => true,
//'schemaCacheDuration' => 60,
//'schemaCache' => 'cache',
];