no-framework-tutorial/implementation/12-configuration/config/settings.php

11 lines
243 B
PHP
Raw Normal View History

2022-03-29 18:35:06 +00:00
<?php declare(strict_types=1);
use Lubian\NoFramework\Settings;
return new Settings(
environment: 'dev',
dependenciesFile: __DIR__ . '/dependencies.php',
templateDir: __DIR__ . '/../templates',
templateExtension: '.html',
);