11 lines
243 B
PHP
11 lines
243 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
use Lubian\NoFramework\Settings;
|
||
|
|
||
|
return new Settings(
|
||
|
environment: 'dev',
|
||
|
dependenciesFile: __DIR__ . '/dependencies.php',
|
||
|
templateDir: __DIR__ . '/../templates',
|
||
|
templateExtension: '.html',
|
||
|
);
|