Skip to content

Commit

Permalink
[LiveComponent] Fix test Kernel deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
smnandre committed Jan 1, 2024
1 parent d109f66 commit ead7029
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/LiveComponent/tests/Fixtures/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,16 @@ protected function configureContainer(ContainerConfigurator $c): void
]);

$c->extension('doctrine', [
'dbal' => ['url' => '%env(resolve:DATABASE_URL)%'],
'dbal' => [
'url' => '%env(resolve:DATABASE_URL)%',
'schema_manager_factory' => 'doctrine.dbal.default_schema_manager_factory',
],
'orm' => [
'auto_generate_proxy_classes' => true,
'auto_mapping' => true,
'enable_lazy_ghost_objects' => true,
'report_fields_where_declared' => true,
'validate_xml_mapping' => true,
'mappings' => [
'Default' => [
'is_bundle' => false,
Expand Down

0 comments on commit ead7029

Please sign in to comment.