This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/config.example.php
2022-01-20 09:54:59 +01:00

14 lines
296 B
PHP

<?php
return [
'root_url' => '/public/',
'database' => [
'name' => 'mysql',
'args' => [
'host' => '127.0.0.1',
'database' => 'test',
'user' => 'root',
'password' => '',
'charset' => 'utf8mb4',
],
],
];