TOP-framework/application/home/config/config.php

34 lines
927 B
PHP

<?php
return [
'register' => [
'Twig' => \framework\library\template\Twig::class,
// 'Smarty' => \framework\library\template\Smarty::class,
// 'Top' => \framework\library\template\Top::class,
],
'decorator' => [
application\home\decorator\Log::class
],
'session' => [
'open' => true,
'prefix' => 'home',
],
'db' => [
'driver' => 'MySQLi',
'host' => '127.0.0.1',
'user' => 'root',
'passwd' => '888888',
'dbname' => 'by_zh',
'prefix' => 'ot_',
'charset' => 'utf8'
],
'view' => [
'engine' => 'Twig',
'ext' => 'html',
'dir' => '../application/home/view/',
'cacheDir' => './runtime/cache/application/home/',
// 'compileDir' => './runtime/compile/application/home/',
// 'left' => '{',
// 'right' => '}',
// 'cacheTime' => 5
],
];