Skip to content

Commit bdaefc7

Browse files
committed
chore(config): fix framework configuration key and simplify route defaults
1 parent 502be63 commit bdaefc7

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/app/config/packages/easy_admin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Copyright 2025-2026 (C) IDMarinas - All Rights Reserved
44
*
5-
* Last modified by "IDMarinas" on 04/01/2026, 18:46
5+
* Last modified by "IDMarinas" on 06/01/2026, 19:46
66
*
77
* @project IDMarinas Template Bundle
88
* @see https://github.com/idmarinas/idm-template-bundle
@@ -21,7 +21,7 @@
2121

2222
return static function (ContainerConfigurator $container) {
2323
$container->extension('framework', [
24-
'forms' => true,
24+
'form' => true,
2525
'assets' => true,
2626
'router' => [
2727
'utf8' => true,

tests/app/config/routes.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Copyright 2025-2026 (C) IDMarinas - All Rights Reserved
44
*
5-
* Last modified by "IDMarinas" on 04/01/2026, 20:45
5+
* Last modified by "IDMarinas" on 06/01/2026, 19:33
66
*
77
* @project IDMarinas Template Bundle
88
* @see https://github.com/idmarinas/idm-template-bundle
@@ -29,7 +29,7 @@
2929
$routes->add('app_home', '/')
3030
->controller(TemplateController::class)
3131
->methods(['GET'])
32-
->defaults(['template' => '@IdmSeo/pages/home.html.twig'])
32+
->defaults(['template' => 'pages/home.html.twig'])
3333
->options([
3434
'seo' => true
3535
])

0 commit comments

Comments
 (0)