Bicycle/App/config/config.php
Egor Isaev b516ca07dc Initial commit: Bicycle PHP MVC micro-framework
Core MVC, HTTP client, Session, Cookie, Config, HTTPException — 111 PHPUnit tests.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-04 10:04:19 +03:00

31 lines
602 B
PHP

<?php
/**
* @package Bicycle
* @description Основной конфиг приложения
*/
return [
'db' => [
'default' => [
'driver' => 'pdo',
'connection' => [
'host' => 'db',
'dbname' => 'bicycle',
'user' => 'root',
'password' => '',
],
],
],
'session' => [
'cookie_params' => [
'lifetime' => 0,
'secure' => false,
'httponly' => true,
'samesite' => 'Lax',
],
],
];