UnderCurrent/app/config.example.php

16 lines
302 B
PHP

<?php
namespace App;
use Ardent\Undercurrent\Config\GenericConfig;
return new GenericConfig([
'dev' => true,
'orm' => [
'driver' => 'pdo_mysql',
'host' => 'localhost',
'user' => 'root',
'password' => 'password',
'db' => 'db',
],
]);